在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
事件:事件是对象发送的消息,发送信号通知客户发生了操作。这个操作可能是由鼠标单击引起的,也可能是由某些其他的程序逻辑触发的。事件的发送方不需要知道哪个对象或者方法接收它引发的事件,发送方只需知道它和接收方之间的中介(delegate)。 示例1: 1 using System; 2 using System.Windows.Forms; 3 4 namespace WindowsFormsApplication2 5 { 6 public partial class Form1 : Form 7 { 8 public Form1() 9 { 10 InitializeComponent(); 11 12 // 在引发buttonOne的Click事件时,应执行Button_Click方法,使用+=运算符把新方法添加到委托列表中 13 buttonOne.Click += new EventHandler(Button_Click); 14 buttonTwo.Click += new EventHandler(Button_Click); 15 buttonTwo.Click += new EventHandler(button2_Click); 16 } 17 18 // 委托要求添加到委托列表中的所有方法都必须有相同的签名 19 private void Button_Click(object sender, EventArgs e) 20 { 21 if (((Button)sender).Name == "buttonOne") 22 { 23 labelInfo.Text = "Button one was pressed."; 24 } 25 else 26 { 27 labelInfo.Text = "Button two was pressed."; 28 } 29 } 30 31 private void button2_Click(object sender, EventArgs e) 32 { 33 MessageBox.Show("This only happens in Button two click event"); 34 } 35 } 36 } 事件处理程序方法有几个重要的地方:
如果使用λ表达式,就不需要Button_Click方法和Button2_Click方法了: 1 using System; 2 using System.Windows.Forms; 3 4 namespace WindowsFormsApplication2 5 { 6 public partial class Form1 : Form 7 { 8 public Form1() 9 { 10 InitializeComponent(); 11 buttonOne.Click += (sender, e) => labelInfo.Text = "Button one was pressed"; 12 buttonTwo.Click += (sender, e) => labelInfo.Text = "Button two was pressed"; 13 buttonTwo.Click += (sender, e) => 14 { 15 MessageBox.Show("This only happens in Button2 click event"); 16 }; 17 } 18 } 19 }
|
请发表评论