일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- sql 서버
- CheckAllChildNodes
- ejs
- html 코드
- header
- WinForm
- jQuery
- SSMS
- 깃허브
- Compare
- AfterCheck
- github
- 윈폼
- nodejs
- body
- 한번에 체크
- footer
- 하위노드
- json
- 로깅
- C#
- 비교
- input
- treeview
- checkbox
- MSSQL
- 초기설정
- Git
- 깜빡임
- SQL Server
- Today
- Total
반응형
목록checkbox (2)
타닥타닥 민타쿠
트리뷰의 자식 노드까지 전체 체크, 전체 체크해제 기능은 AfterCheck 이벤트를 통해 간단히 만들 수 있는데, 친절하게도 공식 문서의 TreeView.AfterCheck Event 페이지에 자식 노드의 체크 기능까지 같이 나와있다. 코드는 아래와 같다. // Updates all child tree nodes recursively. private void CheckAllChildNodes(TreeNode treeNode, bool nodeChecked) { foreach(TreeNode node in treeNode.Nodes) { node.Checked = nodeChecked; if(node.Nodes.Count > 0) { // If the current node has child nodes,..
윈폼에서 제공해주는 트리뷰(TreeView) 의 체크박스를 더블클릭해보면 정상적으로 동작하지 않는 모습을 볼 수 있다. public class NewTreeView : TreeView { protected override void WndProc(ref Message m) { if (m.Msg == 0x203) { m.Result = IntPtr.Zero; } else base.WndProc(ref m); } } 이 때, Designer.cs 파일에 위와 같이 트리뷰를 상속받는 NewTreeView 클래스를 만들고 // this.treeView1 = new System.Windows.Forms.TreeView(); this.treeView1 = new SCL_Editor.Dialogs.AddFCDAForm..