public static View ToView(this MockUIView platformView)
 {
     return(new MockUIViewWrapper(platformView));
 }
 internal static void TransferbindablePropertiesToWrapper(this MockUIView target, MockUIViewWrapper wrapper)
 {
     PlatformBindingHelpers.TransferBindablePropertiesToWrapper(target, wrapper);
 }
 public MockUIViewWrapper(MockUIView platformView)
 {
     PlatformView = platformView;
     platformView.TransferbindablePropertiesToWrapper(this);
 }
 public static void SetValue(this MockUIView target, BindableProperty targetProperty, object value)
 {
     PlatformBindingHelpers.SetValue(target, targetProperty, value);
 }
 public static void SetBindingContext(this MockUIView target, object bindingContext, Func <MockUIView, IEnumerable <MockUIView> > getChild = null)
 {
     PlatformBindingHelpers.SetBindingContext(target, bindingContext, getChild);
 }
 public static void SetBinding(this MockUIView target, BindableProperty targetProperty, BindingBase binding)
 {
     PlatformBindingHelpers.SetBinding(target, targetProperty, binding);
 }
 internal static void SetBinding(this MockUIView target, string targetProperty, BindingBase binding, INotifyPropertyChanged propertyChanged)
 {
     PlatformBindingHelpers.SetBinding(target, targetProperty, binding, propertyChanged);
 }
 public static void SetBinding(this MockUIView target, string targetProperty, BindingBase binding, string updateSourceEventName = null)
 {
     PlatformBindingHelpers.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);
 }