| | |
| | | this.labText.Text = string.Empty; |
| | | |
| | | this.labCaption.Text = caption; |
| | | if (string.IsNullOrEmpty(description)) |
| | | if (!string.IsNullOrEmpty(description)) |
| | | { |
| | | this.labText.AppendLine(description); |
| | | } |
| | |
| | | case Yw.Hydro.ePropStatus.Error: |
| | | { |
| | | this.labCaption.Text += "(错误)"; |
| | | this.labCaption.ImageOptions.ImageIndex = 0; |
| | | } |
| | | break; |
| | | case Yw.Hydro.ePropStatus.Normal: |
| | | { |
| | | |
| | | this.labCaption.ImageOptions.ImageIndex = 1; |
| | | } |
| | | break; |
| | | case Yw.Hydro.ePropStatus.Lack: |
| | | { |
| | | this.labCaption.Text += "(缺省)"; |
| | | this.labCaption.ImageOptions.ImageIndex = 2; |
| | | } |
| | | break; |
| | | case Yw.Hydro.ePropStatus.Abnormal: |
| | | { |
| | | this.labCaption.Text += "(异常)"; |
| | | this.labCaption.ImageOptions.ImageIndex = 3; |
| | | } |
| | | break; |
| | | default: break; |
| | | } |
| | | |
| | | if (!string.IsNullOrEmpty(propStatus.StatusInfo)) |
| | | { |
| | | this.labText.AppendLine(propStatus.StatusInfo); |