摘要: 在WinForm开发中,DataGrid/DataGridView被广泛使用于绑定数据库中数据进行呈现.整理一些关于DataGrid/DataGridView使用的文章,涉及DataGrid/DataGridView基本功能,自定义绘制控件,数据导入/导出(Excel),打印等: http://ww... 阅读全文
posted @ 2015-09-06 14:29 傲三 阅读(576) 评论(0) 推荐(0) 编辑
摘要: private void btn_全选_Click(object sender, EventArgs e) { dgv_Inventory.EndEdit(); this.dgv_Inventory.ClearSelection(); for (int i = ... 阅读全文
posted @ 2015-09-06 14:28 傲三 阅读(931) 评论(1) 推荐(0) 编辑
摘要: private void treeView2_AfterCheck(object sender, TreeViewEventArgs e) { if (e.Action != TreeViewAction.Unknown) { CheckAllChildNodes(e.Node, e.Node.Ch... 阅读全文
posted @ 2015-09-06 14:28 傲三 阅读(1077) 评论(0) 推荐(0) 编辑