c# 窗體啟動後自動執行 Form_Load事件註冊及呼叫
阿新 • • 發佈:2018-11-25
很多時候我們需要在程式一開始後立即觸發執行一些程式。這時候需要呼叫Form_Load。
首先編寫事件程式塊,編寫完後即可再裡面新增需要執行的程式碼。
在結構體之後寫就行。新增之前的程式碼如下:
新增之後:
然後註冊事件。我寫到窗體初始化之後。註冊語句如下:
貼出程式碼塊如下:
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;
using System.Diagnostics;
using GxIAPINET;
namespace watchGlass
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Load += new EventHandler(Form1_Load);
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void ButtonShutDown_Click(object sender, EventArgs e)
{
Process.Start("shutdown", "/s /t 0");
}
private void ButtonStart_Click(object sender, EventArgs e)
{
}
}
}