windowsforms-5657-controls-and-libraries-tree-list-feature-center-tree-list-look-and-feel.md
The TreeList control’s look and feel depends on the skin applied to the application.
Office 2019 Colorful
Office 2016 Dark
Visual Studio 2010
DevExpress Style Dark
To specify the application skin, use the DevExpress Project Settings window:
See the following help topic for more information about application settings: Project Settings Page.
The control consists of multiple visual elements — columns, rows, cells, column headers, buttons, etc. The skin specifies each visual element’s appearance settings — background and foreground colors, font face, size and style, etc. For example, cells are filled with white, column headers — with gray. You can use the TreeList.Appearance property to access and customize appearance settings for each visual element.
treeList1.Appearance.HotTrackedRow.BackColor = Color.AliceBlue;
treeList1.Appearance.HotTrackedRow.BackColor = Color.AliceBlue
See the following help topic for more information about skins and appearance settings: Application Appearance and Skin Colors.
You can also use Skin Editor to customize a specific visual element’s appearance.
Tip
To identify a visual element, hold Ctrl and click it.
See the following help topic for more information on how to create a custom skin and apply it to an application: WinForms Skin Editor.
See Also