摘要: CmbInfo:struct CmbInfo { public int _key; public string _text; public CmbInfo(int key, string text) { _key = key; _text = text; } public override string ToString() { return _text; } }comboBoxEdit赋值: ComboBoxItemCollection col1 = c... 阅读全文
posted @ 2012-05-06 22:17 wowait2 阅读(310) 评论(0) 推荐(0)