c# winform如何创建窗口

avatar
作者
筋斗云
阅读量:0

在C#中,使用WinForms创建窗口需要以下几个步骤:

  1. 创建一个新的Windows Forms应用程序项目。

  2. 在解决方案资源管理器中,双击“Form1.cs”以打开设计器。

  3. 若要向窗口添加控件,请打开工具箱并将所需的控件(例如按钮、文本框等)拖放到窗口上。

  4. 为控件添加事件处理程序,例如双击按钮以生成按钮单击事件的代码。

  5. 在事件处理程序中编写代码以实现所需的功能。

以下是一个简单的示例,该示例创建一个包含一个按钮和一个文本框的窗口。当单击按钮时,文本框中显示“Hello, World!”。

using System; using System.Windows.Forms;  namespace WindowsFormsApp1 {     public partial class Form1 : Form     {         private Button button1;         private TextBox textBox1;          public Form1()         {             InitializeComponent();              // 创建一个按钮             button1 = new Button();             button1.Location = new System.Drawing.Point(50, 50);             button1.Text = "点击我";             button1.Click += new EventHandler(button1_Click);             this.Controls.Add(button1);              // 创建一个文本框             textBox1 = new TextBox();             textBox1.Location = new System.Drawing.Point(50, 100);             this.Controls.Add(textBox1);         }          private void button1_Click(object sender, EventArgs e)         {             textBox1.Text = "Hello, World!";         }          [STAThread]         static void Main()         {             Application.EnableVisualStyles();             Application.SetCompatibleTextRenderingDefault(false);             Application.Run(new Form1());         }     } } 

这个示例展示了如何在C# WinForms中创建一个简单的窗口。你可以根据自己的需求修改代码,添加更多的控件和功能。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!