摘要:
ComboBoxEdit 这个控件和winform自带的控件差不多,使用起来也方便,在designer页面拖拽控件之后可以直接在页面添加要显示的项目: 后台的代码控制也方便 1 cbBoxSex.Properties.Items.Add("全部"); 2 cbBoxSex.Properties.It 阅读全文
摘要:
方法一: DataTable tblDatas = new DataTable("Datas"); DataColumn dc = null; dc = tblDatas.Columns.Add("ID", Type.GetType("System.Int32")); dc.AutoIncremen 阅读全文
摘要:
1、 给checkedListBoxControl绑定数据源: checkedListBoxControl.DataSource = listRole; checkedListBoxControl.DisplayMember = "roleName"; checkedListBoxControl.V 阅读全文