扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:阿虎 来源:Yesky 2007年11月14日
关键字:
//创建一个新的Button组件 Button myButton = new Button ( ) ; //在窗体中显示此按钮 this.Controls.Add ( myButton ) ; 但此时创建的这个Button组件没有任何属性,并且也没有任何事件,在本文中介绍的程序中创建的Button组件,不仅有属性也有事件,下列语句就是本文程序创建Button组件源代码: //按钮数量计算器在每次按钮按动后加"1" counter += 1 ; //对要产生的按钮的纵坐标的相对位置是前一个产生按钮的相对位置的纵坐标加"3" locY += this.btnAdd.Height + 3 ; //创建一个新的Button组件 Button myButton = new Button ( ) ; //设定他的名称和Text属性,以及产生的相对位置 myButton.Name = "Button " + counter ; myButton.Text = "按钮 " + counter ; myButton.Location = new Point ( btnAdd.Location.X , locY ) ; //为产生的新的Button组件设定事件,本文中为产生的按钮设定了三个事件 myButton.MouseEnter += new System.EventHandler ( this.btn_MouseEnter ) ; myButton.MouseLeave += new System.EventHandler ( this.btn_MouseLeave ) ; myButton.Click += new System.EventHandler ( this.btn_Click ) ; //在窗体中显示此按钮 this.Controls.Add ( myButton ) ; |
private void btn_MouseEnter ( object sender , System.EventArgs e ) { //出箱 Button currentButton = ( Button ) sender ; //设定按钮的背景色 currentButton.BackColor = Color.Red ; } |
//文本框数量计算器在每次按钮按动后加"1" counter01 += 1 ; //对要产生的文本框的纵坐标的相对位置是前一个产生按钮的相对位置的纵坐标加"3 locY1 += this.txtAdd.Height + 3 ; //创建一个新的TextBox组件 TextBox myBox = new TextBox ( ) ; //设定他的名称和Text属性,以及产生的位置 myBox.Name = "TextBox " + counter01 ; myBox.Text = "文本框 " + counter01 ; myBox.Location = new Point ( txtAdd.Location.X , locY1 ) ; //为产生的新的TextBox组件设定事件,本文中为产生的文本框设定了一个事件 myBox.Click += new System.EventHandler ( this.btn_Click ) ; //在窗体中显示此文本框 this.Controls.Add ( myBox ) ; |
private void btn_Click ( object sender , System.EventArgs e ) { if ( sender.GetType ( ) == typeof ( Button ) ) { Button control = ( Button ) sender ; MessageBox.Show ( control.Text + "被按动了!"); } else { TextBox control = ( TextBox ) sender ; MessageBox.Show ( control.Text + "被按动了!" ) ; } } |
myBox.Click += new System.EventHandler ( this.txt _Click ) ; |
private void txt_Click ( object sender , System.EventArgs e ) { TextBox currentButton = ( TextBox ) sender ; MessageBox.Show ( currentButton.Text + "被按动了!"); } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者