TTreeView - Delphi Usage Examples, Tips and Tricks
Delphi's tree view control, TTreeView, displays items in an indented outline - a hierarchical view of items. You can include icons with items' text labels and display different icons to indicate whether a node is expanded or collapsed. Learn how to use the tree view control in Delphi programs.
In complex tree views, you might want to display customized tooltip (hint) for each tree node.
Even if the ShowHint property is false, when the mouse is over a tree item (TTreeNode), a tooltip will be displayed containing the title of the item under the mouse cursor, if the entire title is not currently visible. Sometimes, you might want to disable such tree view behavior.
To create a simple "RSS Feed Tree-View" reader, start by dropping a TTreeView control on a Delphi form. You'll aslo need the TXMLDocument and a few labels.
If you only want to apply *bold* to some tree items (their Captions), you can use a "special" (defined in the CommCtrl.pas unit) TreeView API.
The TTreeView Delphi component represents a window that displays a hierarchical list of items. Each item (tree node) consists of a label and an optional bitmapped image (two to be precise). XML gives developers the power to deliver structured data. Export tree view to XML.
Here's how to add check boxes and radio buttons to a TTreeView Delphi component. Give your applications a more professional and smoother look.
The code uses GetNodeAt to add a dragged node as a child of the node under then mouse when it is dropped...
How to display a dataset of records from a table/query in a treeview component.
How to locate (search and select) a TreeView node given by node text.
In complex tree views, you might want to display customized - dynamic context menu for each tree node.