| | |
| | | lst.Add(btnPiZhun.Name); |
| | | lst.Add(btnHelp.Name); |
| | | _enabledBtn(lst); |
| | | this.currentAction = "esc"; |
| | | if (btnEscClick != null) btnEscClick(this, e); |
| | | } |
| | | } |
| | |
| | | lst.Add(btnEsc.Name); |
| | | lst.Add(btnHelp.Name); |
| | | _enabledBtn(lst); |
| | | this.currentAction = "edit"; |
| | | if (btnEdtClick != null) btnEdtClick(this, e); |
| | | } |
| | | |
| | |
| | | lst.Add(btnEsc.Name); |
| | | lst.Add(btnHelp.Name); |
| | | _enabledBtn(lst); |
| | | this.currentAction = "add"; |
| | | if (btnAddClick != null) btnAddClick(this, e); |
| | | } |
| | | |
| | |
| | | /// </summary> |
| | | public string chkParameter { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前状态 |
| | | /// </summary> |
| | | public string currentAction { get; set; } |
| | | #endregion |
| | | |
| | | |