Applied WPF 4 in Context by Raffaele Garofalo

Applied WPF 4 in Context by Raffaele Garofalo

Author:Raffaele Garofalo
Language: eng
Format: epub, pdf
Publisher: Apress®
Published: 2011-05-27T16:00:00+00:00


using System.ComponentModel; namespace APRESS.TimeTracking.DataLayer

{

public sealed class Person : INotifyPropertyChanged

{

public event PropertyChangedEventHandler PropertyChanged;

public void OnPropertyChanged(string propertyName)

{

PropertyChangedEventHandler handler = PropertyChanged;

if (handler != null)

{

PropertyChanged(this, new PropertyChangedEventArgs(propertyName));

}

}

// there are more properties but they are not

// shown for semplicity

}

}

// property inside the Person class



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.