INotifyPropertyChanged
-
[C#] INotifyPropertyChanged.PropertyChanged 이벤트Dev/C# 2008. 9. 23. 13:04
속성 값이 변경되면 발생합니다. 네임스페이스: System.ComponentModel // This class implements a simple customer type // that implements the IPropertyChange interface. public class DemoCustomer : INotifyPropertyChanged { // These fields hold the values for the public properties. private Guid idValue = Guid.NewGuid(); private string customerName = String.Empty; private string companyNameValue = String.Empty; private s..