Пример #1
0
        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;
        }
Пример #2
0
        private void OpenNewWindows()
        {
            NodedataForm ndf = new NodedataForm(TimeLst, TimeData, DetailLstOfStatus, DetailLstOfData);

            ndf.MdiParent = this;
            ndf.Show();
            ndf.WindowState = FormWindowState.Maximized;
        }