随笔分类 -  Winform

摘要:暂无 阅读全文
posted @ 2012-11-27 15:12 _沉默者_ 阅读(93) 评论(0) 推荐(0)
摘要:winform treeView checkbox全选反选 private void treeView2_AfterCheck(object sender, TreeViewEventArgs e) { if (e.Action != TreeViewAction.Unknown) { CheckAllChildNodes(e.Node, e.Node.Checked); //选中父节点 bool bol = true; if (e.Node.Parent != null) { for (int i = 0; i < e.Node.Parent.Nodes.Count; i++) { i 阅读全文
posted @ 2012-11-26 18:24 _沉默者_ 阅读(204) 评论(0) 推荐(0)