there is a property in treeview to enable the checkbox.
goto properties of the treeview then set
CheckBoxes = True
Main Topics
Browse All TopicsHow to add a check box in a tree view node in c# for windows application.
I have attached a sample image for the problem.
Thanks in advance
Anup Das Gupta
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
There is a problem with two last solutions. I pointed already in my post to the CheckBoxes property of the TreeView control. However in this case checkboxes are added tio all nodes, and it seems what Anup Das Gupta wants - checkboxes are added to children nodes only. Therefore some trick should be done...
Business Accounts
Answer for Membership
by: anarki_jimbelPosted on 2008-05-12 at 22:31:38ID: 21552528
One simple approach is to use TreeView.CheckBoxes property.
/blog/?p=2 62
However this might be not exactly what you want.
From the picture you want only children having checkboxes. It's not possible with a standard TreeView.
However you may use the following approach - looks exactly as you want (needs some API calls):
http://www.craigmurphy.com