コード例 #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
ファイル: Form1.cs プロジェクト: BJFX/UWACN
        private void OpenNewWindows()
        {
            NodedataForm ndf = new NodedataForm(TimeLst, TimeData, DetailLstOfStatus, DetailLstOfData);

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