TTreeSelected (C++)

From RAD Studio Code Examples
Jump to: navigation, search

Description

The following code uses Item to add the labels of all child nodes of the selected node to a list box when a button is clicked. This example requires a button, a listbox, and a populated treeview.

Code

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  for (int i = 0; i < TreeView1->Selected->Count; i++)
	ListBox1->Items->Add(TreeView1->Selected->Item[i]->Text);
}

Uses