Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I have the following code for the user to be able to check/uncheck all child nodes when a node is checked through the NodeClick event:
Private Sub SelNodesPropagation(ByVal nd As TreeNodeAdvCollection, bCheck As Boolean)
Dim nodX As TreeNodeAdv
If (nd Is Nothing) Then Exit Sub
For Each nodX In nd
nodX.Checked = bCheck
SelNodesPropagation(nodX.Nodes, bCheck)
Next
End Sub
When a node is clicked, sometimes it works well, sometimes it does not.
Please see what happens in
Could you please help?
Thx