| | |
| | | /// <summary>
|
| | | /// 进度条
|
| | | /// </summary>
|
| | | private NormalViewControl btnProgress = null;
|
| | | public NormalViewControl btnProgress = null;
|
| | | /// <summary>
|
| | | /// 图标控件
|
| | | /// </summary>
|
| | | private IconViewControl btnIcon = null;
|
| | | public IconViewControl btnIcon = null;
|
| | |
|
| | | #endregion
|
| | |
|
| | |
| | | //变红色
|
| | | this.btnProgress.BackgroundColor = 0xfff62f48;
|
| | | this.btnIcon.UnSelectedImagePath = "Public/BatteryNot.png";
|
| | | this.btnIcon.SelectedImagePath = "Public/BatteryNot.png";
|
| | | }
|
| | | else
|
| | | {
|
| | | //变灰色
|
| | | this.btnProgress.BackgroundColor = CSS_Color.PromptingColor1;
|
| | | this.btnIcon.UnSelectedImagePath = "Public/BatteryEnough.png";
|
| | | this.btnIcon.SelectedImagePath = "Public/BatteryEnough.png";
|
| | | }
|
| | | }
|
| | |
|