Ejemplo n.º 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;
        }
Ejemplo n.º 2
0
Archivo: Form1.cs Proyecto: BJFX/UWACN
        private void OpenNewWindows()
        {
            NodedataForm ndf = new NodedataForm(TimeLst, TimeData, DetailLstOfStatus, DetailLstOfData);

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