上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 例子: 例子: 列样式:只作用于当前的列 通用样式:外观设定 阅读全文
posted @ 2018-10-19 11:21 纡ゾ少︶ㄣ 阅读(465) 评论(0) 推荐(0) 编辑
摘要: public partial class Form : Form { //窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static ... 阅读全文
posted @ 2018-09-20 15:30 纡ゾ少︶ㄣ 阅读(116) 评论(0) 推荐(0) 编辑
摘要: private void timer2_Tick(object sender, EventArgs e) { timer1.Interval = 200; AutoSideHideOrShow(); } void AutoSideHideOrShow() { ... 阅读全文
posted @ 2018-09-20 14:50 纡ゾ少︶ㄣ 阅读(225) 评论(0) 推荐(0) 编辑
摘要: DataTable dt = cl.GetList(); comboBoxEx1.DataSource = dt.Copy(); comboBoxEx1.DisplayMember = "列表"; comboBoxEx1.ValueMember = "值"; 阅读全文
posted @ 2018-09-19 10:49 纡ゾ少︶ㄣ 阅读(634) 评论(4) 推荐(0) 编辑
摘要: select a.GM_Name as 名称,a.GM_Code 代码,b.DC_Code as 上级,b.DC_LVL as 排序 from HIS_Pubdata..Tbl_Dic_DeptGroupMethod as a CROSS JOIN HIS_Pubdata..Tbl_Dic_DeptCategory as b where a.ZDLevel=''效果 阅读全文
posted @ 2018-07-20 16:22 纡ゾ少︶ㄣ 阅读(151) 评论(2) 推荐(0) 编辑
摘要: //添加Text控件 GridColumn col = new GridColumn(); col.Name = "部门代码"; col.HeaderText = "部门代码"; col.EditorType = typeof(GridTextBoxXEditControl); col.AutoSi... 阅读全文
posted @ 2018-07-20 16:19 纡ゾ少︶ㄣ 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 0.属性和方法 1.对advTree操作都是在Nodes属性基础上的如:新建 一个Node并添加到tree中 2.取选中节点的值 3.选中时节点 执行操作(SelectedIndexChanged) 阅读全文
posted @ 2018-07-20 16:08 纡ゾ少︶ㄣ 阅读(442) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); int count = this.Controls.Count * 2+2; float[] factor = new float[count]; int i = 0; ... 阅读全文
posted @ 2018-07-04 17:27 纡ゾ少︶ㄣ 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 查询所有数据库名 SELECT Name FROM Master..SysDatabases 查询指定数据库下的表名和视图名 select * from 数据库名..sysobjects where xtype='V'or xtype='U' 查询指定数据库下的指定表的列名 select name from 数据库名.dbo.syscolumns where id=(select id f... 阅读全文
posted @ 2018-06-22 11:10 纡ゾ少︶ㄣ 阅读(153) 评论(0) 推荐(0) 编辑
摘要: let arr = ['apple', 'banana', 'orange', 'tomato']; //循环内容 for(let val of arr) { console.log(val); } //循环索引 for(let index of arr.keys()) { consol... 阅读全文
posted @ 2018-05-29 15:45 纡ゾ少︶ㄣ 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页