Example #1
0
 public static ButtonControl Create(IXappFormsBrowserTab aTab, string aButtonText)
 {
     var button = aTab.CreateControl(aId => new ButtonControl(aTab, aId));
     button.Text = aButtonText;
     return button;
 }
Example #2
0
 public ButtonControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }
Example #3
0
 public static ButtonControl Create(IXappFormsBrowserTab aTab)
 {
     return aTab.CreateControl(aId => new ButtonControl(aTab, aId));
 }
Example #4
0
 public TextboxControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }
Example #5
0
 public Control(IXappFormsBrowserTab aTab, long aId)
 {
     iTab = aTab;
     Id = aId;
 }
Example #6
0
 public static TextboxControl Create(IXappFormsBrowserTab aTab, string aText)
 {
     var tb = aTab.CreateControl(aId => new TextboxControl(aTab, aId));
     tb.Text = aText;
     return tb;
 }
Example #7
0
 public static TextboxControl Create(IXappFormsBrowserTab aTab)
 {
     return aTab.CreateControl(aId => new TextboxControl(aTab, aId));
 }
Example #8
0
 public GridControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }