Last active
February 26, 2018 22:50
-
-
Save SchreinerK/06d1a7fd82c8c60a08137f91eead3a09 to your computer and use it in GitHub Desktop.
Simple ViewModel (KsWare Presentation Framework)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using KsWare.Presentation.ViewModelFramework; | |
namespace MyProject { | |
public class XyzVM : ObjectVM { | |
public XxxVM () { | |
RegisterChildren(()=>this); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment