Skip to content

Instantly share code, notes, and snippets.

@ertugrulozcan
Created October 3, 2015 21:54
Show Gist options
  • Save ertugrulozcan/1cf8080ec41b983a365b to your computer and use it in GitHub Desktop.
Save ertugrulozcan/1cf8080ec41b983a365b to your computer and use it in GitHub Desktop.
INotifyPropertyChanged
#region NotifyPropertyChanged Metodu
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(String propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (null != handler)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment