• 大小: 0.06M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-24
  • 语言: C#
  • 标签:   窗体  关闭  

资源简介

创建form1 form2 form3实现从form1->form2->form3->关闭主窗体  有详细的注释供大家入门学习winform

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace The_first_Application
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {   //在内存中创建form2对象 但是无法显示到屏幕
            Form2 form2 = new Form2 ();
            //展示当前窗体
            form2.Show();

        }
        /// 
        /// 当加载窗体的时候将窗体对象放到Test类中的静态字段中
        /// 

        /// 
        /// 
        private void Form1_Load(object sender EventArgs e)
        {
            Test._fr1Test = this;   
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-24 18:04  The first Application\
     目录           0  2018-11-24 18:04  The first Application\.vs\
     目录           0  2018-11-24 18:04  The first Application\.vs\The first Application\
     目录           0  2018-11-24 18:05  The first Application\.vs\The first Application\v14\
     文件       65024  2018-11-24 21:55  The first Application\.vs\The first Application\v14\.suo
     目录           0  2018-11-24 21:48  The first Application\The first Application\
     文件         189  2018-11-24 18:04  The first Application\The first Application\App.config
     文件        2115  2018-11-24 19:37  The first Application\The first Application\Form1.Designer.cs
     文件         993  2018-11-24 19:37  The first Application\The first Application\Form1.cs
     文件        5817  2018-11-24 19:37  The first Application\The first Application\Form1.resx
     文件        2051  2018-11-24 18:39  The first Application\The first Application\Form2.Designer.cs
     文件         559  2018-11-24 18:39  The first Application\The first Application\Form2.cs
     文件        5817  2018-11-24 18:39  The first Application\The first Application\Form2.resx
     文件        2058  2018-11-24 18:39  The first Application\The first Application\Form3.Designer.cs
     文件         697  2018-11-24 21:48  The first Application\The first Application\Form3.cs
     文件        5817  2018-11-24 18:39  The first Application\The first Application\Form3.resx
     文件         533  2018-11-24 18:04  The first Application\The first Application\Program.cs
     目录           0  2018-11-24 18:04  The first Application\The first Application\Properties\
     文件        1360  2018-11-24 18:04  The first Application\The first Application\Properties\AssemblyInfo.cs
     文件        2855  2018-11-24 18:04  The first Application\The first Application\Properties\Resources.Designer.cs
     文件        5612  2018-11-24 18:04  The first Application\The first Application\Properties\Resources.resx
     文件        1108  2018-11-24 18:04  The first Application\The first Application\Properties\Settings.Designer.cs
     文件         249  2018-11-24 18:04  The first Application\The first Application\Properties\Settings.settings
     文件         363  2018-11-24 19:00  The first Application\The first Application\Test.cs
     文件        4583  2018-11-24 19:00  The first Application\The first Application\The first Application.csproj
     目录           0  2018-11-24 18:04  The first Application\The first Application\bin\
     目录           0  2018-11-24 21:39  The first Application\The first Application\bin\Debug\
     文件       10240  2018-11-24 21:48  The first Application\The first Application\bin\Debug\The first Application.exe
     文件         189  2018-11-24 18:04  The first Application\The first Application\bin\Debug\The first Application.exe.config
     文件       28160  2018-11-24 21:48  The first Application\The first Application\bin\Debug\The first Application.pdb
     文件       22696  2018-11-24 21:51  The first Application\The first Application\bin\Debug\The first Application.vshost.exe
............此处省略21个文件信息

评论

共有 条评论