Beispiel #1
0
        //参数设置
        private void show_guanwang()
        {
            if (this.checkChildFrmExist("参数设置") == true)
            {
                return;
            }
            Form f = new Form();
            f = new SetValue();
            f.Text = "参数设置";
            f.MdiParent = this;
            f.WindowState = FormWindowState.Maximized;
            f.Show();

        }