摘要:
我在Form1.Designer.cs中添加了匿名委托 this.btnEvent.Click += new System.EventHandler(this.MyEventClick);//a event of mine this.btnEvent.Click += new System.Eve... 阅读全文
摘要:
书里在讨论到事件中使用匿名方式时举了下面三个例子: btnOne.Click += new EventHandler( lblInfo.Text = "button One was pressed.";); btnTwo.Click += new EventHandler( lbl... 阅读全文