winrt反射_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > winrt反射

winrt反射

 2014/4/23 21:39:12  wangjinming  博客园  我要评论(0)
  • 摘要:第一步引用扩展类。usingSystem.Reflection.IntrospectionExtensions;第二步反射。gridView是我定义的GridView控件。ItemClick是它的ItemClick事件。vartypeInfo=(gridView.GetType()).GetTypeInfo();vareventInfo=typeInfo.GetDeclaredEvent("ItemClick");注意它只能获取自己定的事件,父类定义的要用循环获取
  • 标签:反射

第一步引用扩展类。

using System.Reflection.IntrospectionExtensions;

 

第二步反射。

gridView是我定义的GridView控件。ItemClick是它的ItemClick事件。

var typeInfo = (gridView.GetType()).GetTypeInfo();
            var eventInfo = typeInfo.GetDeclaredEvent("ItemClick");

  

注意它只能获取自己定的事件,父类定义的要用循环获取。

EventInfo eventInfo;

do

{
                    var typeInfo = type.GetTypeInfo();

       eventInfo = typeInfo.GetDeclaredEvent(eventName);
                    type = typeInfo.BaseType;
                }
                while (eventInfo == null && type != null);

 

这样就可以获取了。

 //事件替换

var eventRaisedMethod = this.GetType().GetTypeInfo().GetDeclaredMethod("OnEventRaised");
                return eventRaisedMethod.CreateDelegate(eventInfo.EventHandlerType, this);

发表评论
用户名: 匿名