Skip to main content
A newer version of this page is available. .

DockPanel.AllowCustomHeaderButtonsGlyphSkinning Property

Gets or sets whether Custom Header Button icons should be painted according to the currently applied skin.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[Browsable(false)]
[XtraSerializableProperty]
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean AllowCustomHeaderButtonsGlyphSkinning { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

true, if Custom Header Button icons should be painted according to the currently applied skin; otherwise, false.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

The DockPanel.AllowGlyphSkinning property allows you to paint panel icons in this panel’s foreground color. This property affects icons within panel caption, the tab header and auto-hide header. To apply the Glyph Skinning to the Custom Header Button icons, use the AllowCustomHeaderButtonsGlyphSkinning property instead.

The AllowCustomHeaderButtonsGlyphSkinning property’s main objective is to paint Custom Header Button icons in an application Skin‘s colors. Use it to implement your own custom buttons that look exactly like default buttons (close, auto-hide, maximize). However, you can use it to paint monochrome icons in your own custom colors. To do this, access the IButtonProperties.Appearance section of the desired items within the DockPanel.CustomHeaderButtons collection.

The animation below illustrates a DockPanel with two default and one custom header button. All three buttons are painted in the same pattern according to the currently applied skin (Office 2013).

DockPanel - CustomHeaderButton Glyph Skinning

See the Glyph Skinning topic to see all controls that support the Glyph Skinning Feature.

See Also