using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GenerateCode_GEBrilliantFactory { /// /// ListItem用于ComboBox控件添加项 /// public class ListItem { public string Text { get; set; } public string Value { get; set; } public override string ToString() { return this.Text; } } }