using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Uninpho.Tools.components { /// /// ComboBox数据绑定类 /// /// PengZhen /// public class ComboBoxData { /// /// 值 /// public string Text { set; get; } /// /// 键 /// public string Value { set; get; } /// /// 重写ToString()方法 /// /// PengZhen /// /// 返回ComboBox的值 public override string ToString() { return Text; } } }