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

BackstageItemWithImage.GlyphStyle Property

Gets or sets a style applied to the item’s glyph (BackstageItemWithImage.Glyph). This is a dependency property.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v21.1.dll

NuGet Package: DevExpress.Wpf.Ribbon

Declaration

[Browsable(false)]
public Style GlyphStyle { get; set; }

Property Value

Type Description
Style

A Style object applied to the item’s glyph.

Remarks

Target Type: Image.

Example

When you display an image with the BackstageButtonItem’s BackstageItemWithImage.Glyph property, the image is placed inside a glyph container. Use the BackstageItemWithImage.GlyphContainerStyle and BackstageItemWithImage.GlyphStyle properties to change the glyph container and image styles.

The following code sample specifies the image’s height and width to 32 pixels, a container’s height and width to 100, and displays the image at the top left corner:

BackstageItem.GlyphStyle

<Window.Resources>

        ...

        <Style x:Key="myGlyphStyle" TargetType="Image">
            <Setter Property="VerticalAlignment" Value="Top"/>
            <Setter Property="HorizontalAlignment" Value="Left"/>
            <Setter Property="Height" Value="32"/>
            <Setter Property="Width" Value="32"/>
        </Style>

        <Style x:Key="myGlyphContainerStyle" TargetType="ContentControl">
            <Setter Property="VerticalAlignment" Value="Center"/>
            <Setter Property="HorizontalAlignment" Value="Center"/>
            <Setter Property="Height" Value="100"/>
            <Setter Property="Width" Value="100"/>
        </Style>

        ...

    </Window.Resources>

<dxr:BackstageButtonItem  Content="DevHelp" Glyph="D:\Work\Icon.png" GlyphStyle="{StaticResource myGlyphStyle}" GlyphContainerStyle="{StaticResource myGlyphContainerStyle}"/>
...

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GlyphStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also