C# 用groupbox控件gpbWindows实现同窗体多界面切换

很多时候我们需要在程序一开始后立即触发执行一些程序。这时候需要调用Form_Load。
首先编写事件程序块,编写完后即可再里面添加需要执行的代码。
在结构体之后写就行。添加之前的代码如下:
C# 用groupbox控件gpbWindows实现同窗体多界面切换_第1张图片
添加之后:
C# 用groupbox控件gpbWindows实现同窗体多界面切换_第2张图片
然后注册事件。我写到窗体初始化之后。注册语句如下:
C# 用groupbox控件gpbWindows实现同窗体多界面切换_第3张图片

贴出代码块如下:

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)
        {

        }
    }
}

你可能感兴趣的:(C#)