摘要: 第一步:自定义一个类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 {. 阅读全文
posted @ 2011-09-25 20:35 廖非凡 阅读(598) 评论(0) 推荐(0) 编辑