Click here to Skip to main content
Licence 
First Posted 27 Apr 2004
Views 121,812
Bookmarked 37 times

TriStateTreeview in VB.NET

By | 19 Jan 2006 | Article
A VB.NET implementation of a treeview with 3-state checkboxes using state image list

Introduction

The TreeView with checkboxes implemented in the .NET Framework (property TreeView.CheckBoxes = True) allows only 2 states (TreeNode.Checked = True or False). The implementation presented here:

  • Allows to use the state image list that is not directly available in the .NET Framework implementation.

  • Allows 3 states (4 including the state none) for a node: checked, unchecked, indeterminate.

  • Implements the logic to set the proper state of parents and children when the user changes the state of a node: it selects all children when the parent is selected, and set the state of the parent(s) to checked, unchecked or indeterminate depending on the number of children selected (all, none, etc.).

I have seen other TriState implementations in the C# section but they use the image list, not the state image list, for checkboxes and therefore doesn't allow to have icons and checkboxes for nodes at the same time.

Using the code

I have derived a TriStateTreeView class from the base TreeView class. This new class needs an additional state image list with icons for the 4 states: none, unchecked, checked, indeterminate (in this order).

The state image list is passed in the constructor:

  m_ctlTriStateTreeView = New TriStateTreeView(Me.StateImageList)

A new enum type is provided to specify the state of a node:

Friend Enum CheckBoxState
   None = 0
   Unchecked = 1
   Checked = 2
   Indeterminate = 3
End Enum

To add nodes to the treeview, you can use the AddTreeNode helper function of the TriStateTreeView class:


 objTreeNodeRoot = m_ctlTriStateTreeView.AddTreeNode( _
    m_ctlTriStateTreeView.Nodes, "My Computer", _
    IMG_COMPUTER, CheckBoxState.None)

To get the state of a node you use the GetTreeNodeState function of the TriStateTreeView class:


 Friend Function GetTreeNodeState(ByVal objTreeNode As _
    TreeNode) As CheckBoxState

To set the state of a node you use the SetTreeNodeState function of the TriStateTreeView class:


Friend Sub SetTreeNodeState(ByVal objTreeNode As _
    TreeNode, ByVal eCheckBoxState As CheckBoxState)

Points of Interest

The code intercepts the MouseUp and KeyUp events to change the state of a node (when clicking with the mouse or pressing space). Also, the code prevents expanding or collapsing a node double-clicking on the state image.

History

  • 27-April-2004: Initial version.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Carlos J. Quintero



Spain Spain

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralOnBeforeExpand & OnBeforeCollapse prevents expand collapse too much Pinmemberjsytniak9:55 2 Mar '09  
Generalcheckbox and afterchange event Pinmemberiwrschenk3:18 3 Dec '08  
AnswerRe: checkbox and afterchange event Pinmemberjsytniak10:23 26 Dec '08  
GeneralProblem with SetTreeNodeState method PinmemberOmar Vargas5:50 11 Nov '08  
Hello everyone.
 
When I call the SetTreeNodeState method, the state of the parent node does not work correctly.
 
For example: If I have a parent node which children are checked, but I set the state of any one of those children to unchecked (calling SetTreeNodeState) the state of the parent node does not go to Indeterminate.
 
I think that we has to make a call to SetParentTreeNodeStateRecursively(objTreeNode.Parent) at the end of SetTreeNodeState method.
 
I have made this modification and it works correctly.
 
Bye
NewsC# Version Pinmemberjsytniak3:37 7 May '08  
Generalnode tooltip Pinmemberkalany6:21 16 Apr '08  
GeneralRe: node tooltip - bug with state icons Pinmemberjsytniak3:40 7 May '08  
GeneralC# version with some minor enhancements Pinmemberalverdal6:16 20 Mar '08  
GeneralRe: C# version with some minor enhancements PinmemberMember 283438922:33 5 Oct '08  
QuestionCheck Boxes not showing up in my project Pinmembercrazytom10:03 25 Jan '08  
GeneralRe: Check Boxes not showing up in my project Pinmembercrazytom8:27 27 Jan '08  
GeneralRe: Check Boxes not showing up in my project Pinmemberkhendric3:32 5 Mar '08  
QuestionProblems with this class Pinmemberjonmach1:05 17 Nov '07  
AnswerRe: Problems with this class Pinmemberjonmach8:18 17 Nov '07  
AnswerRe: Problems with this class Pinmembermadmax823:02 4 Aug '10  
Generalpocket pc project Pinmemberrabosa23:58 20 Jun '07  
GeneralBeforeCheck Issue Pinmemberthierry_anthony7:30 13 Apr '07  
GeneralPopule windows root [modified] Pinmembermpdesign13:48 11 Feb '07  
QuestionTreeview state problem PinmemberAchintya Jha5:49 25 Oct '06  
AnswerRe: Treeview state problem Pinmemberpriman_p21:31 27 Sep '09  
GeneralLoadOnDemand does not work Pinmemberdevnet24723:35 18 Feb '06  
GeneralVery nice however... Pinmembervbinfo4:56 31 Jan '06  
GeneralRe: Very nice however... PinmemberCarlos J. Quintero5:17 31 Jan '06  
GeneralRe: Very nice however... Pinmemberdevnet24712:31 13 Feb '06  
GeneralRe: Very nice however... PinmemberNewton Burgos16:54 5 Aug '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120604.1 | Last Updated 19 Jan 2006
Article Copyright 2004 by Carlos J. Quintero
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid