码迷,mamicode.com
首页 > 其他好文 > 详细

自定义路由事件

时间:2014-08-16 11:13:30      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   2014   代码   log   new   ad   type   

自定义路由事件大体上可分为三个步骤:
1、声明并注册路由事件;
2、为路由事件添加CLR事件包装;
3、创建可以激发路由事件的方法。

主要的示例代码如下:
public class TimeButton : Button
{
    /// <summary>
    /// 声明并注册路由事件。
    /// </summary>
    public static readonly RoutedEvent ReportTimeEvent = EventManager.RegisterRoutedEvent("ReportTime", 
        RoutingStrategy.Bubble, 
        typeof(EventHandler<ReportTimeEventArgs>), 
        typeof(TimeButton));

    /// <summary>
    /// CLR事件包装器。
    /// </summary>
    public event RoutedEventHandler ReportTime
    {
        add { this.AddHandler(ReportTimeEvent, value); }
        remove { this.RemoveHandler(ReportTimeEvent, value); }
    }

    /// <summary>
    /// 激发路由事件,借用Click事件的激发方法。
    /// </summary>
    protected override void OnClick()
    {
        base.OnClick();

        ReportTimeEventArgs args = new ReportTimeEventArgs(ReportTimeEvent, this);
        args.ClickTime = DateTime.Now;
        this.RaiseEvent(args);
    }
}


自定义路由事件,布布扣,bubuko.com

自定义路由事件

标签:blog   ar   2014   代码   log   new   ad   type   

原文地址:http://blog.csdn.net/gjysk/article/details/38611071

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!