private void NewWindow_Click(object sender, EventArgs e) { NodedataForm ndf = new NodedataForm(TimeLst, TimeData, DetailLstOfStatus, DetailLstOfData); ndf.MdiParent = this.ParentForm; ndf.Show(); ndf.WindowState = FormWindowState.Maximized; }
private void OpenNewWindows() { NodedataForm ndf = new NodedataForm(TimeLst, TimeData, DetailLstOfStatus, DetailLstOfData); ndf.MdiParent = this; ndf.Show(); ndf.WindowState = FormWindowState.Maximized; }