using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UAS_PLCDataReader.DataOperate { class ComboBoxData { /// /// 值 /// public string Text { set; get; } /// /// 键 /// public string Value { set; get; } /// 返回ComboBox的值 public override string ToString() { return Text; } } }