摘要: public static class ExtendMethods { /// /// 绑定列表控件 /// /// 列表控件 /// 数据表 public static void BindListControl(this ListControl listControl, DataTable dt) { if (dt != null) { listControl.DataSource = dt; ... 阅读全文
posted @ 2014-02-21 09:58 --宁静以致远-- 阅读(155) 评论(0) 推荐(0) 编辑