Skip to content

Instantly share code, notes, and snippets.

@TheFo2sh
Created August 24, 2019 21:18
Show Gist options
  • Save TheFo2sh/dfdffdc8a8c700af8346bc01eae42888 to your computer and use it in GitHub Desktop.
Save TheFo2sh/dfdffdc8a8c700af8346bc01eae42888 to your computer and use it in GitHub Desktop.
[Serializable]
public class MainPageViewModelConfiguration : ConfigurationProvider<MainPageViewModel>
{
public MainPageViewModelConfiguration()
{
this.NotifyPropertyChange(model =>model.Name );
this.NotifyPropertyChange(model=>model.WelcomeMsg).DependOn(model =>model.Name );
this.NotifyPropertyChange(model => model.Command).DependOn(model => model.Name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment