예제 #1
0
파일: Plots.cs 프로젝트: ApexWeed/NetML
 private void EditPlot(Plot Plot)
 {
     if (Editor == null)
     {
         Editor = new PlotEditor(this, Plot);
         Editor.Show();
     }
     else
     {
         Editor.LoadPlot(Plot);
         Editor.BringToFront();
     }
 }
예제 #2
0
파일: Plots.cs 프로젝트: ApexWeed/NetML
 public void EditorClosed()
 {
     RefreshPlots();
     Editor = null;
 }