form1.cs

来自「图书馆管理系统data structure」· CS 代码 · 共 53 行

CS
53
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace 图书馆管理系统
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void toolStripMenuItem2_Click(object sender, EventArgs e)
        {
            Form2 A = new Form2();
            A.MdiParent =this ;
            A.Show ();
        }

        private void toolStripMenuItem3_Click(object sender, EventArgs e)
        {
            Form3 B = new Form3();
            B.MdiParent = this;
            B.Show();
        }

        private void toolStripMenuItem4_Click(object sender, EventArgs e)
        {
            Form4 C = new Form4();
            C.MdiParent = this;
            C.Show();
        }

        private void toolStripMenuItem5_Click(object sender, EventArgs e)
        {
            Form5 D = new Form5();
            D.MdiParent = this;
            D.Show();
        }

        private void toolStripMenuItem6_Click(object sender, EventArgs e)
        {
            Form6 f = new Form6();
            f.MdiParent = this;
            f.Show();
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?