摘要:
第一步:自定义一个类ListItempublic class ListItem { private string text = string.Empty; private string value = string.Empty; public ListItem(string Text, string Value) { text = Text; value = Value; } public override string ToString() { return this.value; } public string Text { get { return this.text; } set {. 阅读全文