在C#中,使用WinForms創建界面涉及以下幾個步驟:
創建一個新的Windows Forms應用程序項目:
設計界面:
添加代碼:
編寫代碼:
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Button clicked!");
}
以下是一個簡單的WinForms應用程序示例,其中包含一個按鈕和一個標簽:
using System;
using System.Windows.Forms;
namespace MyWinFormsApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = "Hello, WinForms!";
}
}
}
在這個示例中,當用戶點擊按鈕時,標簽的文本會更改為“Hello, WinForms!”。