protected virtual void OnEditorChanged()
 {
     if (EditorChanged != null)
     {
         EditorChanged.Invoke(this, EventArgs.Empty);
     }
 }
Esempio n. 2
0
 protected virtual void OnEditorChanged(Control editor)
 {
     _editorInstance = editor;
     if (EditorChanged != null)
     {
         EditorChanged.Invoke(this, EventArgs.Empty);
     }
 }