TreeView with checkboxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

is there any possibility to find out whether treeNode text has been clicked, or its corresponding checkbox
I would like to check this in MouseDown event handler (or in any other one that allows for this).

Thank
Michał Januszczyk
 
No managed way that I can find
Use P/Invoke and send a TVM_HITTEST message

/claes


Michal Januszczyk said:
is there any possibility to find out whether treeNode text has been
clicked, or its corresponding checkbox ?
 
Try looking at the BeforeCheck and BeforeSelect events. I think that will
give you what you need and much easier than any API calls...

--
Marc Butenko
(e-mail address removed)



Michal Januszczyk said:
is there any possibility to find out whether treeNode text has been
clicked, or its corresponding checkbox ?
 
Back
Top