自定义CancelEventArgs类,封装事件参数信息,实现e.Cancle=true取消机制。
参考文章:http://blog.csdn.net/lastinglate/article/details/5753113
如果您正在设计可取消的事件,请使用CancelEventArgs(而非是EventArgs)作为事件数据对象e的基类。
使用场景:订阅者可以通过e.Cancle来控制发布者引发事件的方法是否被执行!类似窗体的Form_Closing事件机制。
顺便有关静态事件链的实现,可以参考:http://www.cnblogs.com/wangiqngpei557/archive/2011/05/19/2051044.html
/1.自定义EventArgs类,封装事件参数信息
{
private string message;
public ActionCancelEventArgs() : this(false) { }
public ActionCancelEventArgs(bool cancel) : this(false, String.Empty) { }
public ActionCancelEventArgs(bool cancel, string message) : base(cancel) {
this.message = message;
}
public string Message { get; set; }
}
[c-sharp] view plaincopyprint?
//2.定义委托
public delegate void ActionEventHandler(object sender, ActionCancelEventArgs ev);
//3.声明事件(用到委托类型)
public static event ActionEventHandler Action;
//4.定义事件处理函数
protected void OnAction(object sender, ActionCancelEventArgs ev)
{
if (Action != null)
{
Action(sender, ev);
}
}
//注册事件处理程序
public class BusEntity
{
string time = String.Empty;
public BusEntity() {
//将事件处理程序添加到事件
Form1.Action += new Form1.ActionEventHandler(Form1_Action);
}
private void Form1_Action(object sender, ActionCancelEventArgs e) {
e.Cancel = !DoActions();
if (e.Cancel)
{
e.Message = "wasn't the right time.";
}
}
private bool DoActions() {
bool retVal = false;
DateTime tm = DateTime.Now;
if (tm.Second<30)
{
time = "The time is "+DateTime.Now.ToLongTimeString();
retVal = true;
}
else
{
time = "";
}
return retVal;
}
public string TimeString {
get { return time; }
}
}
[c-sharp] view plaincopyprint?
private void btnRaise_Click(object sender, EventArgs e)
{
ActionCancelEventArgs cancelEvent = new ActionCancelEventArgs();
OnAction(this, cancelEvent);
if (cancelEvent.Cancel)
{
lblInfo.Text = cancelEvent.Message;
}
else
{
lblInfo.Text = busEntity.TimeString;
}
}
作者:阿笨
【官方QQ一群:跟着阿笨一起玩NET(已满)】:422315558
【官方QQ二群:跟着阿笨一起玩C#(已满)】:574187616
【官方QQ三群:跟着阿笨一起玩ASP.NET(已满)】:967920586
【官方QQ四群:Asp.Net Core跨平台技术开发(可加入)】:829227829
【官方QQ五群:.NET Core跨平台开发技术(可加入)】:647639415
【网易云课堂】:https://study.163.com/provider/2544628/index.htm?share=2&shareId=2544628
【腾讯课堂】:https://abennet.ke.qq.com
【51CTO学院】:https://edu.51cto.com/sd/66c64
【微信公众号】:微信搜索:跟着阿笨一起玩NET