摘要: ==============C#=====================string[] v = { "01", "02" }; string[] txt = { "测试一", "测试二" }; Dictionary dic = new Dictionary(); for (int i = 0; i < 2; i++) { dic.Add(v[i], txt[i]); } BindingSource bs = new BindingSource(); bs.DataSource = dic; checked 阅读全文
posted @ 2013-07-24 09:28 纵一苇之所如- 阅读(1758) 评论(0) 推荐(0) 编辑