コード例 #1
0
 protected virtual void Update(
     PropertyGridTableElement.UpdateActions updateAction)
 {
     if (this.state[1] || this.propertyGridTableElement == null)
     {
         return;
     }
     this.propertyGridTableElement.Update(updateAction);
 }
コード例 #2
0
        protected virtual void Update(PropertyGridTableElement.UpdateActions updateAction)
        {
            if (this.state[SuspendNotificationsState])
            {
                return;
            }

            if (this.propertyGridTableElement != null)
            {
                this.propertyGridTableElement.Update(updateAction);
            }
        }