40 строки
1007 B
C#
40 строки
1007 B
C#
using System;
|
|
using UIKit;
|
|
using Xamarin.Forms.Xaml.Internals;
|
|
|
|
[assembly: Xamarin.Forms.Dependency(typeof(Xamarin.Forms.Platform.iOS.NativeBindingService))]
|
|
|
|
namespace Xamarin.Forms.Platform.iOS
|
|
{
|
|
class NativeBindingService : INativeBindingService
|
|
{
|
|
public bool TrySetBinding(object target, string propertyName, BindingBase binding)
|
|
{
|
|
var view = target as UIView;
|
|
if (view == null)
|
|
return false;
|
|
if (target.GetType().GetProperty(propertyName)?.GetMethod == null)
|
|
return false;
|
|
view.SetBinding(propertyName, binding);
|
|
return true;
|
|
}
|
|
|
|
public bool TrySetBinding(object target, BindableProperty property, BindingBase binding)
|
|
{
|
|
var view = target as UIView;
|
|
if (view == null)
|
|
return false;
|
|
view.SetBinding(property, binding);
|
|
return true;
|
|
}
|
|
|
|
public bool TrySetValue(object target, BindableProperty property, object value)
|
|
{
|
|
var view = target as UIView;
|
|
if (view == null)
|
|
return false;
|
|
view.SetValue(property, value);
|
|
return true;
|
|
}
|
|
}
|
|
} |