
正文
Xamarin View获取属性的绑定信息
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
public static Binding GetBinding( BindableObject self, BindableProperty property)
{
var methodInfo = typeof(BindableObject).GetTypeInfo().GetDeclaredMethod("GetContext");
var context = methodInfo?.Invoke(self, new[] { property }); var propertyInfo = context?.GetType().GetTypeInfo().GetDeclaredField("Binding");
return propertyInfo?.GetValue(context) as Binding;
}







