sntetwt
public MainForm()
{
    //1、初始化视图
    InitializeComponent();
    //2、加载程序
    this.Load += new System.EventHandler(this.MainForm_Load);
    //4、窗体关闭之前
    this.FormClosing += (s, r) =>
    {

    };
    //5、窗体关闭
    this.Closed += (s, r) =>
    {
        this.Close();
    };            
}
private void MainForm_Load(object sender, EventArgs e)
{
}

  

分类:

技术点:

相关文章:

  • 2021-12-05
  • 2020-01-18
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-11-14
  • 2021-08-16
猜你喜欢
  • 2021-12-05
  • 2021-12-05
  • 2021-09-17
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-09-17
相关资源
相似解决方案