摘要:
第一步:自定义一个类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
廖非凡
阅读(605)
评论(0)
推荐(0)
浙公网安备 33010602011771号