• winform 新建窗体1


    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    
    namespace MDI窗体
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void 销售模块ToolStripMenuItem_Click(object sender, EventArgs e)
            {
                bool has = false;
                Form2 f2 = new Form2();
    
                foreach (Form f in panel1.Controls)
                {
                    if (f.Name == f2.Name)
                    {
                        has = true;
                        f.Show();
                        f2.Close();
                    }
                }
                if (has)
                {
                    foreach (Form f in panel1.Controls)
                    {
                        if (f.Name != f2.Name)
                        {
                            f.Hide();
                        }
                    }
                }
                else
                {
                    f2.WindowState = FormWindowState.Maximized;
                    f2.MdiParent = this;
                    f2.Parent = panel1;
                    f2.Show();
                }
            }
    
            private void 仓库模块ToolStripMenuItem_Click(object sender, EventArgs e)
            {
                bool has = false;
                Form3 f3 = new Form3();
    
                foreach (Form f in panel1.Controls)
                {
                    if (f.Name == f3.Name)
                    {
                        has = true;
                        f.Show();
                        f3.Close();
                    }
                }
                if (has)
                {
                    foreach (Form f in panel1.Controls)
                    {
                        if (f.Name != f3.Name)
                        {
                            f.Hide();
                        }
                    }
                }
                else
                {
                    f3.WindowState = FormWindowState.Maximized;
                    f3.MdiParent = this;
                    f3.Parent = panel1;
                    f3.Show();
                }
            }
    
    
        }
    }
  • 相关阅读:
    Reporting Services 配置工具
    管道符、重定向和环境变量
    靶机DC-2 rbash绕过+git提权
    单表查询
    数据库和表的基本操作(二)
    数据库和表的基本操作(一)
    MySQL的约束
    bugku-misc 9-16
    Linux基础命令
    时间-i春秋
  • 原文地址:https://www.cnblogs.com/zhangdemin/p/5640742.html
Copyright © 2020-2023  润新知