Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Created July 9, 2016 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nuitsjp/2dc50c188f0b19b58eb092fa09d741fb to your computer and use it in GitHub Desktop.
Save nuitsjp/2dc50c188f0b19b58eb092fa09d741fb to your computer and use it in GitHub Desktop.
WPFやXamarinのICommandを改めて整理する VM②
private string _name;
public string Name
{
get { return _name; }
set
{
if (OnPropertyChanged(ref _name, value))
ExecuteCommand.RaiseCanExecuteChanged();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment