Training
Module
How to build the User Interface in a canvas app in Power Apps - Training
In this module, learners will learn how to build UI for their app including theming, icons, images, personalization, form factors, and controls.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
The Windows Forms TreeView control can display icons next to each node. The icons are positioned to the immediate left of the node text. To display these icons, you must associate the tree view with an ImageList control. For more information about image lists, see ImageList Component and How to: Add or Remove Images with the Windows Forms ImageList Component.
Note
A bug in Microsoft .NET Framework version 1.1 prevents images from appearing on TreeView nodes when your application calls Application.EnableVisualStyles. To work around this bug, call Application.DoEvents in your Main
method immediately after calling EnableVisualStyles. This bug is fixed in .NET Framework 2.0.
Set the TreeView control's ImageList property to the existing ImageList control you wish to use.
These properties can be set in the designer with the Properties window, or in code.
TreeView1.ImageList = ImageList1
treeView1.ImageList = imageList1;
treeView1->ImageList = imageList1;
Set the node's ImageIndex and SelectedImageIndex properties. The ImageIndex property determines the image displayed for the node's normal and expanded states, and the SelectedImageIndex property determines the image displayed for the node's selected state.
These properties can be set in code, or within the TreeNode Editor. To open the TreeNode Editor, click the ellipsis button ( ) next to the Nodes property on the Properties window.
' (Assumes that ImageList1 contains at least two images and
' the TreeView control contains a selected image.)
TreeView1.SelectedNode.ImageIndex = 0
TreeView1.SelectedNode.SelectedImageIndex = 1
// (Assumes that imageList1 contains at least two images and
// the TreeView control contains a selected image.)
treeView1.SelectedNode.ImageIndex = 0;
treeView1.SelectedNode.SelectedImageIndex = 1;
// (Assumes that imageList1 contains at least two images and
// the TreeView control contains a selected image.)
treeView1->SelectedNode->ImageIndex = 0;
treeView1->SelectedNode->SelectedImageIndex = 1;
.NET Desktop feedback feedback
.NET Desktop feedback is an open source project. Select a link to provide feedback:
Training
Module
How to build the User Interface in a canvas app in Power Apps - Training
In this module, learners will learn how to build UI for their app including theming, icons, images, personalization, form factors, and controls.
Documentation
Iterate Through All Nodes of TreeView Control - Windows Forms .NET Framework
Learn how to interate through the nodes of a Windows Forms TreeView control. TreeView Nodes provide properties that navigate through the TreeView control.
How to: Determine Which TreeView Node Was Clicked - Windows Forms .NET Framework
Learn how to determine which TreeView Node has been clicked so that you can respond appropriately.
Add and Remove Nodes with TreeView Control - Windows Forms .NET Framework
The Windows Forms TreeView control stores the top-level nodes. Learn how to add and remove nodes with the Windows Forms TreeView control.