Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Win32 textBox in treeview

I want to add textbox in treeview as child of one of the parent node. Is it possible> If yes how to achieve this?

like image 353
Rushikesh Talokar Avatar asked Sep 02 '25 14:09

Rushikesh Talokar


1 Answers

The native TreeView control isn't going to be helpful at all to make this work. Programming one yourself is a tricky proposition. It is however a very popular UI gadget. Any component vendor sells one, invariably called "TreeList".

You'll have to do some shopping if you want to use such a component from unmanaged C/C++. An ActiveX version of such a control is as close as you can get. Most component vendors have however put that in their legacy bag.

like image 100
Hans Passant Avatar answered Sep 05 '25 16:09

Hans Passant