AspNetEdit.UI.PropertyGrid.OnPropertyValueChanged C# (CSharp) 메소드

OnPropertyValueChanged() 공개 메소드

public OnPropertyValueChanged ( GridRow changedItem, object oldValue, object newValue ) : void
changedItem GridRow
oldValue object
newValue object
리턴 void
        public void OnPropertyValueChanged(GridRow changedItem, object oldValue, object newValue)
        {
            if (PropertyValueChanged != null)
            PropertyValueChanged (this, new PropertyValueChangedEventArgs (changedItem, oldValue, newValue));
        }