zoukankan      html  css  js  c++  java
  • 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();
                }
            }
    
    
        }
    }
  • 相关阅读:
    sqlsever中生成GUID的方法
    部署项目到服务器
    读后感
    第二次作业
    课堂作业
    第一次作业 开发环境配置介绍
    第二次结对作业
    代码审查
    最大连续子数组和
    单元测试
  • 原文地址:https://www.cnblogs.com/zhangdemin/p/5640742.html
Copyright © 2011-2022 走看看