| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_DeviceMonitor.DataOperate
- {
- class ComboBoxData
- {
- /// <summary>
- /// 值
- /// </summary>
- public string Text { set; get; }
- /// <summary>
- /// 键
- /// </summary>
- public string Value { set; get; }
- /// <summary>
- /// 重写ToString()方法
- /// </summary>
- /// <author>PengZhen</author>
- /// <time>2013-10-31 15:51:37</time>
- /// <returns>返回ComboBox的值</returns>
- public override string ToString()
- {
- return Text;
- }
- }
- }
|