public static void SetValue(this MockUIView target, BindableProperty targetProperty, object value) { NativeBindingHelpers.SetValue(target, targetProperty, value); }
internal static void SetBinding(this MockUIView target, string targetProperty, BindingBase binding, INotifyPropertyChanged propertyChanged) { NativeBindingHelpers.SetBinding(target, targetProperty, binding, propertyChanged); }
public static void SetBinding(this MockUIView target, BindableProperty targetProperty, BindingBase binding) { NativeBindingHelpers.SetBinding(target, targetProperty, binding); }
public static void SetBinding(this MockUIView target, string targetProperty, BindingBase binding, string updateSourceEventName = null) { NativeBindingHelpers.SetBinding(target, targetProperty, binding, updateSourceEventName); }
public static View ToView(this MockUIView nativeView) { return(new MockUIViewWrapper(nativeView)); }
public MockUIViewWrapper(MockUIView nativeView) { NativeView = nativeView; nativeView.TransferbindablePropertiesToWrapper(this); }
internal static void TransferbindablePropertiesToWrapper(this MockUIView target, MockUIViewWrapper wrapper) { NativeBindingHelpers.TransferBindablePropertiesToWrapper(target, wrapper); }
public static void SetBindingContext(this MockUIView target, object bindingContext, Func <MockUIView, IEnumerable <MockUIView> > getChild = null) { NativeBindingHelpers.SetBindingContext(target, bindingContext, getChild); }