Inheritance: System.ComponentModel.Design.CollectionEditor
コード例 #1
0
 void propertyGrid_PropertyValueChanged(object sender, PropertyValueChangedEventArgs e)
 {
     // Fire our customized collection event...
     if (EntityCollectionEditor.MyPropertyValueChanged != null)
     {
         EntityCollectionEditor.MyPropertyValueChanged(this, e);
     }
     SetModified();
 }
コード例 #2
0
 void propertyGrid_PropertyValueChanged(object sender, PropertyValueChangedEventArgs e)
 {
     // Fire our customized collection event...
     if (EntityCollectionEditor.MyPropertyValueChanged != null)
     {
         EntityCollectionEditor.MyPropertyValueChanged(this, e);
     }
     if (HelperEditor.HandlerInterface != null && _useHandlerInterface)
     {
         HelperEditor.HandlerInterface.SetModified();
     }
 }