Ejemplo n.º 1
0
 public static void SetTextColor(this IQView <TextView> view, RGB color)
 {
     view.PlatformView.SetTextColor(color);
 }
Ejemplo n.º 2
0
 public static IProperty <bool> CheckedProperty(this IQView <CompoundButton> view)
 {
     return(view.PlatformView.CheckedProperty());
 }
Ejemplo n.º 3
0
 public static IProperty <string> TextProperty(this IQView <UILabel> label)
 {
     return(label.PlatformView.TextProperty());
 }
Ejemplo n.º 4
0
 public static void SetText(this IQView <EditText> view, string text)
 {
     view.PlatformView.SetText(text);
 }
Ejemplo n.º 5
0
 public static EventHandlerSource <T> ClickedTarget <T>(this IQView <T> control)
     where T : UIBarButtonItem
 {
     return(control.PlatformView.ClickedTarget());
 }
Ejemplo n.º 6
0
 public static IProperty <CGSize> ContentSizeProperty(this IQView <UITextView> textView)
 {
     return(textView.ContentSizeProperty());
 }
Ejemplo n.º 7
0
 public static void SetHintText(this IQView <EditText> field, string text)
 {
     field.PlatformView.SetHintText(text);
 }
Ejemplo n.º 8
0
 public static bool GetVisibility(this IQView <View> view)
 {
     return(view.PlatformView.GetVisibility());
 }
Ejemplo n.º 9
0
 public static IEnumerable <View> Subviews(this IQView <ViewGroup> view)
 {
     return(view.PlatformView.Subviews());
 }
Ejemplo n.º 10
0
 public static void SetFrame(this IQView <View> view, RectangleF value)
 {
     view.PlatformView.SetFrame(value);
 }
Ejemplo n.º 11
0
 public static void SetVisibility(this IQView <View> view, bool visible)
 {
     view.PlatformView.SetVisibility(visible);
 }
Ejemplo n.º 12
0
 public static RectangleF Frame(this IQView <View> view)
 {
     return(view.PlatformView.Frame());
 }
Ejemplo n.º 13
0
 public static EventHandlerSource <T> EditorActionTarget <T>(this IQView <T> view)
     where T : TextView
 {
     return(view.PlatformView.EditorActionTarget());
 }
Ejemplo n.º 14
0
 public static IProperty <string> TextProperty(this IQView <TextView> view)
 {
     return(view.PlatformView.TextProperty());
 }
Ejemplo n.º 15
0
 public static IProperty <int> SelectedPagePositionProperty(this IQView <ViewPager> viewPager)
 {
     return(viewPager.PlatformView.SelectedPagePositionProperty());
 }
Ejemplo n.º 16
0
 public static void SetEnabled(this IQView <Control> view, bool enabled)
 {
     view.PlatformView.SetEnabled(enabled);
 }
Ejemplo n.º 17
0
 public static IProperty <string> TextProperty(this IQView <UITextView> textView, bool immediate = true)
 {
     return(textView.TextProperty(immediate));
 }
Ejemplo n.º 18
0
 public static void SetBackgroundColor(this IQView <View> view, RGB bgColor)
 {
     view.PlatformView.SetBackgroundColor(bgColor);
 }
Ejemplo n.º 19
0
 public static void SetFont(this IQView <EditText> view, Font font)
 {
     view.PlatformView.SetFont(font);
 }
Ejemplo n.º 20
0
 public static void SetPadding(this IQView <View> view, EdgeInset padding)
 {
     view.PlatformView.SetPadding(padding);
 }
Ejemplo n.º 21
0
 public static void SetTextColor(this IQView <EditText> field, RGB color)
 {
     field.PlatformView.SetTextColor(color);
 }
Ejemplo n.º 22
0
 public static IProperty <RemoteImage> ImageProperty(this IQView <RemoteImageView> imageView)
 {
     return(imageView.PlatformView.ImageProperty());
 }
Ejemplo n.º 23
0
 public static string GetText(this IQView <EditText> view)
 {
     return(view.PlatformView.GetText());
 }
Ejemplo n.º 24
0
 public UITableViewCellAdapter(IQView <UIView> cellView) : this(cellView.PlatformView)
 {
 }
Ejemplo n.º 25
0
 public static void SetText(this IQView <UITextField> field, NSAttributedString text)
 {
     field.PlatformView.SetText(text);
 }
Ejemplo n.º 26
0
 public static void SetContent(this IQView <UITableView> view, IUITableViewDataSource adapter)
 {
     view.PlatformView.SetContent(adapter);
 }
Ejemplo n.º 27
0
 public static IProperty <string> TextProperty(this IQView <UITextField> textField, bool immediate = true)
 {
     return(textField.PlatformView.TextProperty(immediate));
 }
Ejemplo n.º 28
0
 public static void SetContent(this IQView <ExpandableListView> view, IExpandableListAdapter adapter)
 {
     view.PlatformView.SetContent(adapter);
 }
Ejemplo n.º 29
0
 public static IProperty <RemoteImage> ImageProperty(this IQView <RemoteImageView> view)
 {
     return(view.ImageProperty());
 }
Ejemplo n.º 30
0
 public static void SetFont(this IQView <Button> view, Font font)
 {
     view.PlatformView.SetFont(font);
 }