コード例 #1
0
 private void Init()
 {
     ResetEditForms();
     ResetTitle();
     //grid.ResetGrid();
     PlotForm.OpenPlots(items);
 }
コード例 #2
0
ファイル: PlotForm.cs プロジェクト: lulzzz/JohnshopesFPlot
 public static IPlotForm OpenPlot(ItemsModel Model, ItemsModel.Plot Plot)
 {
     if (Plot.New)
     {
         PlotForm f = new PlotForm(Model, Plot.PlotModel, Plot.Bounds);
         f.Show();
         f.Location = new Point(Plot.Bounds.X, Plot.Bounds.Y);
         f.BringToFront();
         return(f);
     }
     return(null);
 }