コード例 #1
0
ファイル: AppWin_Si4420_CP.cs プロジェクト: x893/WDS
 public void initialize(Form appMainWin, string appId, AppWin_Si4420_CP.Si4420_ConfigurationSetting cfgSetting, AppWin_Si4420_CP.Si4420_PowerManagement powerMan, Label lblEnableInfo, ComboBox cbbClkOut, TextBox txbLBD, TextBox txbLBDV, TextBox txbCommand)
 {
     this._appMainWin = appMainWin;
     this._appId = appId;
     this._cfgSetting = cfgSetting;
     this._powerMan = powerMan;
     this._lblEnableInfo = lblEnableInfo;
     this._cbbClkOut = cbbClkOut;
     this._txbLBD = txbLBD;
     this._txbLBDV = txbLBDV;
     this._txbCommand = txbCommand;
     this._cbbClkOut.SelectedIndexChanged += new EventHandler(this._cbbClkOut_SelectedIndexChanged);
     this._txbLBD.Leave += new EventHandler(this._txbLBD_Leave);
     this._txbLBD.KeyPress += new KeyPressEventHandler(this._txbLBD_KeyPress);
     this._txbLBDV.Leave += new EventHandler(this._txbLBDV_Leave);
     this._txbLBDV.KeyPress += new KeyPressEventHandler(this._txbLBDV_KeyPress);
     this.setClkOutItems();
     this._txbLBD.Text = this._lbdc.ToString();
     this.validate_lbdTextChange();
     this.enableLowBattDet(this._lowBattDetEnabled);
     this._isPublishChangeEnabled = true;
 }
コード例 #2
0
ファイル: AppWin_Si4420_CP.cs プロジェクト: x893/WDS
 public void initialize(Form appMainWin, string appId, AppWin_Si4420_CP.Si4420_ConfigurationSetting cfgSetting, AppWin_Si4420_CP.Si4420_PowerManagement powerMan, Label lblSetEnableInfo, TextBox txbWakeUpM, TextBox txbWakeUpR, TextBox txbWakeUpTime, Label lblTimeUnit, TextBox txbCommand)
 {
     this._appMainWin = appMainWin;
     this._appId = appId;
     this._cfgSetting = cfgSetting;
     this._powerMan = powerMan;
     this._lblSetEnableInfo = lblSetEnableInfo;
     this._txbWakeUpM = txbWakeUpM;
     this._txbWakeUpR = txbWakeUpR;
     this._txbWakeUpTime = txbWakeUpTime;
     this._lblTimeUnit = lblTimeUnit;
     this._txbCommand = txbCommand;
     this._txbWakeUpM.Leave += new EventHandler(this._txbWakeUpM_Leave);
     this._txbWakeUpM.KeyPress += new KeyPressEventHandler(this._txbWakeUpM_KeyPress);
     this._txbWakeUpR.Leave += new EventHandler(this._txbWakeUpR_Leave);
     this._txbWakeUpR.KeyPress += new KeyPressEventHandler(this._txbWakeUpR_KeyPress);
     this._txbWakeUpM.Text = this.WakeUpM.ToString();
     this._txbWakeUpR.Text = this._wakeUpR.ToString();
     this.setWakeUpTime();
     this.calcCommand();
     this._isPublishChangeEnabled = true;
 }