c# – 如何通过Silverlight中的名称获取DependencyProperty?

c# – 如何通过Silverlight中的名称获取DependencyProperty?,第1张

概述情况:我有一个字符串,表示Silverlight中TextBox的DependencyProperty的名称.例如:“TextProperty”.我需要引用TextBox的实际TextProperty,它是一个DependencyProperty. 问题:如果我获得的是属性的名称,我如何获得对DependencyProperty的引用(在C#中) 像DependencyPropertyDescri 情况:我有一个字符串,表示Silverlight中TextBox的DependencyProperty的名称.例如:“TextProperty”.我需要引用TextBox的实际TextProperty,它是一个DependencyProperty.

问题:如果我获得的是属性的名称,我如何获得对DependencyProperty的引用(在C#中)

像DependencyPropertyDescriptor这样的东西在Silverlight中不可用.看来我得借鉴反思来获得参考.有什么建议么?

解决方法 您将需要反思:
public static DependencyProperty GetDependencyProperty(Type type,string name) {     FIEldInfo fIEldInfo = type.GetFIEld(name,BindingFlags.Public | BindingFlags.Static);     return (fIEldInfo != null) ? (DependencyProperty)fIEldInfo.GetValue(null) : null; }

用法:-

var dp = GetDependencyProperty(typeof(TextBox),"TextProperty");
总结

以上是内存溢出为你收集整理的c# – 如何通过Silverlight中的名称获取DependencyProperty?全部内容,希望文章能够帮你解决c# – 如何通过Silverlight中的名称获取DependencyProperty?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1236373.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存