哪位高手能解释下这段代码什么意思??winform的
public event EventHandler Completed
protected override void WndProc(ref Message m) { if (m.Msg == 0x210) { if ((!base.DesignMode && (m.WParam.ToInt32() == 2)) && (this.Completed!= null)) { this.Completed(this, new EventArgs()); } this.DefWndProc(ref m); } else { base.WndProc(ref m); } }
还有第二个问题,如果需要在注册Completed事件时。验证如果注册的是同个委托方法.不添加进去..如果不是同个委托方法。。就加入。应该在Completed的 add remove中怎样写验证代码???????
添加回答
举报
0/150
提交
取消