コード例 #1
0
ファイル: ButtonControl.cs プロジェクト: weeble/ohos
 public static ButtonControl Create(IXappFormsBrowserTab aTab, string aButtonText)
 {
     var button = aTab.CreateControl(aId => new ButtonControl(aTab, aId));
     button.Text = aButtonText;
     return button;
 }
コード例 #2
0
ファイル: ButtonControl.cs プロジェクト: weeble/ohos
 public ButtonControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }
コード例 #3
0
ファイル: ButtonControl.cs プロジェクト: weeble/ohos
 public static ButtonControl Create(IXappFormsBrowserTab aTab)
 {
     return aTab.CreateControl(aId => new ButtonControl(aTab, aId));
 }
コード例 #4
0
ファイル: Control.cs プロジェクト: weeble/ohos
 public TextboxControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }
コード例 #5
0
ファイル: Control.cs プロジェクト: weeble/ohos
 public Control(IXappFormsBrowserTab aTab, long aId)
 {
     iTab = aTab;
     Id = aId;
 }
コード例 #6
0
ファイル: Control.cs プロジェクト: weeble/ohos
 public static TextboxControl Create(IXappFormsBrowserTab aTab, string aText)
 {
     var tb = aTab.CreateControl(aId => new TextboxControl(aTab, aId));
     tb.Text = aText;
     return tb;
 }
コード例 #7
0
ファイル: Control.cs プロジェクト: weeble/ohos
 public static TextboxControl Create(IXappFormsBrowserTab aTab)
 {
     return aTab.CreateControl(aId => new TextboxControl(aTab, aId));
 }
コード例 #8
0
ファイル: GridControl.cs プロジェクト: weeble/ohos
 public GridControl(IXappFormsBrowserTab aTab, long aId)
     : base(aTab, aId)
 {
 }