在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!”。