ccqin的blog

待定

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年10月27日

摘要: 红字部分还是不太懂// 为事件声明一个代理 delegate void MyEventHandler(); // 声明事件 class MyEvent { public event MyEventHandler activate; // 调用这个方法来触发事件 public void fire() { if (activate != null) acti... 阅读全文
posted @ 2011-10-27 14:17 ccqin 阅读(155) 评论(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 阅读(120) 评论(0) 推荐(0) 编辑