博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
silverlight和wpf中暴露 给子类override
阅读量:5887 次
发布时间:2019-06-19

本文共 1001 字,大约阅读时间需要 3 分钟。

protected virtual void OnSelectionChanged(SelectionChangedEventArgs args)        {        }

 

1  public TestTabControl() 2         { 3             KeyEventHandler handler = null; 4             SelectionChangedEventHandler handler2 = null; 5             this._updateIndex = true; 6             this.SelectedIndex = -1; 7  8              9             if (handler == null)10             {11                 handler = (sender, e) => this.OnKeyDown(e);12             }13             base.KeyDown += handler;14 15             //make child can override SelectionChanged event16             if (handler2 == null)17             {18                 handler2 = (sender, e) => this.OnSelectionChanged(e);19             }20             this.SelectionChanged += handler2;21 22 23             base.IsEnabledChanged += new DependencyPropertyChangedEventHandler(this.OnIsEnabledChanged);24             base.DefaultStyleKey = typeof(TestTabControl);25 26         }

 

转载于:https://www.cnblogs.com/FaDeKongJian/p/3314066.html

你可能感兴趣的文章
poi excel 常用api
查看>>
AD提高动态的方法(附SNR计算)
查看>>
[转]轻松实现可伸缩性,容错性,和负载平衡的大规模多人在线系统
查看>>
五 数组
查看>>
也谈跨域数据交互解决方案
查看>>
EntityFramework中使用Include可能带来的问题
查看>>
面试题28:字符串的排列
查看>>
css important
查看>>
WPF 实现窗体拖动
查看>>
NULL不是数值
查看>>
Oracle学习笔记之五,Oracle 11g的PL/SQL入门
查看>>
大叔手记(3):Windows Silverlight/Phone7/Mango开发学习系列教程
查看>>
考拉消息中心消息盒子处理重构(策略模式)
查看>>
so easy 前端实现多语言
查看>>
【追光者系列】HikariCP源码分析之ConcurrentBag&J.U.C SynchronousQueue、CopyOnWriteArrayList...
查看>>
canvas系列教程05-柱状图项目3
查看>>
css绘制几何图形
查看>>
HTML标签
查看>>
理解JS中的Event Loop机制
查看>>
转载:字符编码笔记:ASCII,Unicode和UTF 8
查看>>