免费邮箱 |加入收藏 | 会员中心 | 我要投稿 | RSS
您当前的位置:首页 > .NET专区 > ASP.NET技巧

头一次手写这么长的代码,真累:

时间:2011-05-16 19:44:57  来源:站内  作者:潘春会
public delegate void DataInputEventHandler(object sender,EventArgs e);//如果你不重载EventArgs,此处不必做委托,用Event就可以了。
public class EventSource()
{
    public event DataInputEventHandler DataInputEvent;
    private void OnDataInputEvent(EventArgs e)
    {
          if(this.DataInputEvent!=null)//必须判断是否为null,否则如果事件监视方不监视此事件,则程序会出错
           {
                  this.DataInputEvent(this,e);
           }
    }
    public void AMethod()
   {
         //do something!
          ...
         this.OnDataInputEvent(new EventArgs());//激活事件;
         
   }
}
public class EventTarget()
{
      private EventSource source;
      public EventTarget()
     {
           this.source=new EventSource();
           source.DataInputEvent+=new DataInputEventHandler(this.DoThing);
     }
     protected void DoThing(object sender,EventArgs)
     {
           MessageBox.Show("开心警告:有数据录入了!");
      }

}
}
就这么简单
来顶一下
返回首页
返回首页
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
推荐资讯
如何找出DHCP地址池里未使用的IP地址
如何找出DHCP地址池里
国内常用的DNS列表
国内常用的DNS列表
Linux邮件服务器软件比较
Linux邮件服务器软件比
学用纯CSS打造可折叠树状菜单
学用纯CSS打造可折叠树
相关文章
栏目更新
栏目热门