Exemplo n.º 1
0
 public void t初期化(string str項目名, int n最小値, int n最大値, int n初期値, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
 {
     base.t初期化(str項目名, eパネル種別, str説明文jp, str説明文en);
     this.n最小値          = n最小値;
     this.n最大値          = n最大値;
     this.n現在の値         = n初期値;
     this.b値がフォーカスされている = false;
 }
Exemplo n.º 2
0
 public void t初期化(string str項目名, CItemBase.Eパネル種別 eパネル種別, int n初期インデックス値, string str説明文jp, string str説明文en, params string[] arg項目リスト)
 {
     base.t初期化(str項目名, eパネル種別, str説明文jp, str説明文en);
     this.n現在選択されている項目番号 = n初期インデックス値;
     foreach (string str in arg項目リスト)
     {
         this.list項目値.Add(str);
     }
 }
Exemplo n.º 3
0
 public void t初期化(string str項目名, int n最小値, int n最大値, int n初期値, CItemBase.Eパネル種別 eパネル種別, string str説明文jp)
 {
     this.t初期化(str項目名, n最小値, n最大値, n初期値, eパネル種別, str説明文jp, str説明文jp);
 }
Exemplo n.º 4
0
 public void t初期化(string str項目名, int n最小値, int n最大値, int n初期値, CItemBase.Eパネル種別 eパネル種別)
 {
     this.t初期化(str項目名, n最小値, n最大値, n初期値, eパネル種別, "", "");
 }
Exemplo n.º 5
0
 public void t初期化(string str項目名, CItemBase.Eパネル種別 eパネル種別, int n初期インデックス値, string str説明文jp, params string[] arg項目リスト)
 {
     this.t初期化(str項目名, eパネル種別, n初期インデックス値, str説明文jp, str説明文jp, arg項目リスト);
 }
Exemplo n.º 6
0
 public override void t初期化(string str項目名, CItemBase.Eパネル種別 eパネル種別)
 {
     base.t初期化(str項目名, eパネル種別);
     this.n現在選択されている項目番号 = 0;
     this.list項目値.Clear();
 }
Exemplo n.º 7
0
 public CItemList(string str項目名, CItemBase.Eパネル種別 eパネル種別, int n初期インデックス値, string str説明文jp, string str説明文en, params string[] arg項目リスト)
     : this()
 {
     this.t初期化(str項目名, eパネル種別, n初期インデックス値, str説明文jp, str説明文en, arg項目リスト);
 }
Exemplo n.º 8
0
 public void t初期化(string str項目名, bool b初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp)
 {
     this.t初期化(str項目名, b初期状態, eパネル種別, str説明文jp, str説明文jp);
 }
 public void t初期化(string str項目名, E状態 e初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
 {
     base.t初期化(str項目名, eパネル種別, str説明文jp, str説明文en);
     this.e現在の状態 = e初期状態;
 }
 public void t初期化(string str項目名, E状態 e初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp)
 {
     this.t初期化(str項目名, e初期状態, CItemBase.Eパネル種別.通常, str説明文jp, str説明文jp);
 }
 public void t初期化(string str項目名, E状態 e初期状態, CItemBase.Eパネル種別 eパネル種別)
 {
     this.t初期化(str項目名, e初期状態, CItemBase.Eパネル種別.通常, "", "");
 }
Exemplo n.º 12
0
 public CItemList(string str項目名, CItemBase.Eパネル種別 eパネル種別)
     : this()
 {
     this.t初期化(str項目名, eパネル種別);
 }
Exemplo n.º 13
0
 public CSwitchItemList(string str項目名, CItemBase.Eパネル種別 eパネル種別, int n初期インデックス値, params string[] arg項目リスト)
     : this()
 {
     this.t初期化(str項目名, eパネル種別, n初期インデックス値, arg項目リスト);
 }
Exemplo n.º 14
0
 private void t初期化(string str項目名, bool b初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
 {
     base.t初期化(str項目名, eパネル種別, str説明文jp, str説明文en);
     this.bON = b初期状態;
 }
Exemplo n.º 15
0
 public CItemToggle(string str項目名, bool b初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
     : this()
 {
     this.t初期化(str項目名, b初期状態, eパネル種別, str説明文jp, str説明文en);
 }
 public CItemThreeState(string str項目名, E状態 e初期状態, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
     : this()
 {
     this.t初期化(str項目名, e初期状態, eパネル種別, str説明文jp, str説明文en);
 }
Exemplo n.º 17
0
 public CItemInteger(string str項目名, int n最小値, int n最大値, int n初期値, CItemBase.Eパネル種別 eパネル種別, string str説明文jp, string str説明文en)
     : this()
 {
     this.t初期化(str項目名, n最小値, n最大値, n初期値, eパネル種別, str説明文jp, str説明文en);
 }
Exemplo n.º 18
0
 public void t初期化(string str項目名, bool b初期状態, CItemBase.Eパネル種別 eパネル種別)
 {
     this.t初期化(str項目名, b初期状態, eパネル種別, "", "");
 }