public static void Open(List <string[]> rows, Project p, Phase ph) { if (!rows.Any()) { MessageBox.Show("No data found"); return; } if (control == null) { control = new ColumnSelection(); } Form1.Navigate(control); control.SetData(rows, p, ph); }
private void PhaseSelection_Load(object sender, EventArgs e) { control = this; control.TopLevel = false; AutoScroll = true; }