资源简介
创建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个文件信息
- 上一篇:C# 概率随机数
- 下一篇:秒表计时器(倒计时 )
相关资源
- C# 隐藏某个磁盘分区
- pop3lib类库 +(这个不错) 附完整
- XXTEA算法的C#实现和JS实现,可以互相
- C# 隐形窗体 (没有边框,没有标题栏
- WPF 自定义标题的winform窗体实现源码
- C# 椭圆型窗体
- 用鼠标拖动无边框窗体功能的实现代
- Revit可停靠窗体Test(类库)
- WPF TextBox一个缺陷的修改
- 统计大文件每个字符出现的次数
- 计算你人生 剩余几个月
- 窗体换肤
- C# 如何禁止关闭操作系统源码
- C# 创建移动的窗体
- C# 远程关闭重启计算机 实例源码下载
- C# 屏蔽ALT+F4组合键关闭窗体
- C# 定时关闭计算机
- c# 取消 Alt+F4(关闭窗口)源码
-
C# MediaPla
yer 播放声音 - 禁用控制台右上角关闭功能
- 窗体颜色字体改变
- c#窗体应用双色球小游戏(附文档)
- 将Excel数据分解到多个文本文件
- 为一个Excel文件创建多个工作表
- 将多个Excel文件进行自动汇总
- 读取多个Word文档文件到Excel同一数据
- 将多个Excel文件输出到同一Sql
- 将多个Excel文件汇总到一个Excel文件
- 磁性窗体的设计
- 窗体的浮动及隐藏
评论
共有 条评论