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