Skip to content

Instantly share code, notes, and snippets.

@Majirefy
Created May 18, 2018 01:54
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 Majirefy/7aefeaf37389db620f8f0f6b69417ba4 to your computer and use it in GitHub Desktop.
Save Majirefy/7aefeaf37389db620f8f0f6b69417ba4 to your computer and use it in GitHub Desktop.
Use lambda expression to invoke property change notification.
public bool IsLogin
{
get
{
return _isLogin;
}
set
{
_isLogin = value;
RaisePropertyChanged(() => IsLogin);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment