Caliburn.Micro.PropertyChangedBase.NotifyOfPropertyChange C# (CSharp) 메소드

NotifyOfPropertyChange() 공개 메소드

public NotifyOfPropertyChange ( string propertyName ) : void
propertyName string
리턴 void
        public virtual void NotifyOfPropertyChange(string propertyName)
        {
            BaseNotifyCalled = true;
            var handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }
PropertyChangedBase