窗体中增加按钮(Button)控件的方法
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=“单击了我”;
} //单击按钮后执行的语句
}
点击加载更多评论>>