Created
October 3, 2015 21:54
-
-
Save ertugrulozcan/1cf8080ec41b983a365b to your computer and use it in GitHub Desktop.
INotifyPropertyChanged
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
#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