ControlSystem.StringUI.NotifyPropertyChanged C# (CSharp) 메소드

NotifyPropertyChanged() 보호된 메소드

protected NotifyPropertyChanged ( string name ) : void
name string
리턴 void
        protected void NotifyPropertyChanged(string name)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(name));
            }
        }