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

前端之家收集整理的这篇文章主要介绍了c# – 如何通过Silverlight中的名称获取DependencyProperty?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
情况:我有一个字符串,表示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");
原文链接:https://www.f2er.com/csharp/96616.html

猜你在找的C#相关文章