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

ImageButtonInfo.Glyph Property

Gets or sets the button’s glyph. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public ImageSource Glyph { get; set; }

Property Value

Type Description
ImageSource

A ImageSource object that is the button’s glyph.

Remarks

The following code sample specifies the ButtonEdit‘s image:

<Window ...
  xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
  <dxe:ButtonEdit Text="Input a value">
    <dxe:ImageButtonInfo Glyph="/DevExpress.Images.v20.1;component/SvgImages/Outlook Inspired/Glyph_Phone.svg"/>
  </dxe:ButtonEdit>
</Window>

See Also