Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi

how do i add combobox,textbox control inside treeview node columns
Posted
Comments
Sergey Alexandrovich Kryukov 18-Mar-13 1:11am    
Who told you that such columns exist?
—SA

1 solution

Unfortunately, System.Windows.Forms.TreeView control does not have columns. Even it you derive your custom control from this class and use owner draw or fully custom graphic rendering, implementation of columns is nearly impossible or very difficult, as I know from my own experience. You can try to implement such control either from low level, or derive if from System.Windows.Forms.ListView.

One idea of such implementation is shown in this CodeProject article: Virtual Mode TreeListView[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900