Skip to content

Instantly share code, notes, and snippets.

@preslavrachev
Created January 4, 2011 20:06
Show Gist options
  • Save preslavrachev/765326 to your computer and use it in GitHub Desktop.
Save preslavrachev/765326 to your computer and use it in GitHub Desktop.
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment