Exemple #1
0
 private void InitSystemEditor()
 {
     this.systemEditorForm = new SystemEditorForm();
     this.systemEditorForm.SelectionChanged += this.SystemEditorSelectionChanged;
     this.systemEditorForm.FileOpen         += this.SystemEditorFileOpen;
     this.systemEditorForm.DataManipulated  += this.SystemEditorDataManipulated;
 }
Exemple #2
0
 private void CloseSystemEditor()
 {
     // dispose system editor
     this.systemEditorForm.Dispose();
     this.systemEditorForm = null;
 }