Language.Expression.NotifyViewChanged C# (CSharp) Method

NotifyViewChanged() public method

public NotifyViewChanged ( ) : void
return void
        public virtual void NotifyViewChanged()
        {
            LastPropertyChange = "ViewChanged";

            if (ViewChanged != null)
                ViewChanged(this);

            if (PropertyChanged != null)
                PropertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs("ViewChanged"));
        }