位置:首页 > 软件操作教程 > 编程开发 > C# > 问题详情

窗体中增加按钮(Button)控件的方法

提问人:刘冬梅发布时间:2020-10-10
using System;

using System.Windows.Forms;

using System.Drawing;

public class Form1:Form

{Button button1; //生成Button类引用变量

 public Form1() //构造函数

{ Text=“我的第一个程序”;//或this.Text="我的第一个程序";

  button1=new Button();//生成Button类对象

  button1.Location=new Point(25,25);  //修改按钮位置

  button1.Text="确定"; //修改button1按钮的标题

  //button1_Click函数是按钮单击事件的单击事件处理函数

 button1.Click+=new System.EventHandler(button1_Click);

  this.Controls.Add(button1);//按钮增加到窗体中并显示

}

static void Main()

{ Application.Run(new Form1());

} //下边函数是单击按钮事件处理函数

private void button1_Click(object sender, EventArgs e)

{ this.button1.Text=“单击了我”;     

} //单击按钮后执行的语句

}


继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部