Skip to main content

TreeListOptionsView.AllowGlyphSkinning Property

Gets or sets whether column and node icons of the current TreeList should be painted with the foreground color of these columns or nodes.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AllowGlyphSkinning { get; set; }

Property Value

Type Default Description
Boolean false

true if column and node icons of the current TreeList should be painted with the foreground color of these columns or nodes; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllowGlyphSkinning
TreeList
.OptionsView .AllowGlyphSkinning

Remarks

The AllowGlyphSkinning property allows you to paint icons of TreeList‘s columns and nodes in the fore color of these columns and nodes. This feature is called Glyph Skinning and allows you to build monochrome application UIs. Note that if the TreeListOptionsView.ShowIndentAsRowStyle property equals true, node icons will be painted according to the currently applied skin, rather than to custom foreground colors of these nodes.

The TreeList control is not the only control that supports the Glyph Skinning feature. See the Glyph Skinning topic for the complete controls list.

Important

The AllowGlyphSkinning property does not affect icons within tree list context menus. Glyph skinning for these icons is managed by the Bar Manager or Ribbon (see the EditorContainer.MenuManager property).

See Also