private void Init() { ResetEditForms(); ResetTitle(); //grid.ResetGrid(); PlotForm.OpenPlots(items); }
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); }