摘要: 红字部分还是不太懂// 为事件声明一个代理 delegate void MyEventHandler(); // 声明事件 class MyEvent { public event MyEventHandler activate; // 调用这个方法来触发事件 public void fire() { if (activate != null) acti... 阅读全文
posted @ 2011-10-27 14:17 ccqin 阅读(156) 评论(0) 推荐(0) 编辑
摘要: public delegate void InvokeDelegate(string x); public void OnFaxSended(string fax) { //txtFax.Text += fax; //txtFax.Text += System.Environment.NewLine; ... 阅读全文
posted @ 2011-10-27 11:34 ccqin 阅读(123) 评论(0) 推荐(0) 编辑