Back to Devexpress

DateEditStyleSettingsBase.GlyphKind Property

wpf-devexpress-dot-xpf-dot-editors-dot-dateeditstylesettingsbase.md

latest2.1 KB
Original Source

DateEditStyleSettingsBase.GlyphKind Property

Gets or sets the DateEdit’s drop-down image. This is a dependency property.

Namespace : DevExpress.Xpf.Editors

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public DateEditGlyphKind? GlyphKind { get; set; }
vb
Public Property GlyphKind As DateEditGlyphKind?

Property Value

TypeDefaultDescription
Nullable<DateEditGlyphKind>null

A Nullable DateEditGlyphKind value that is the DateEdit’s drop-down image.

|

Available values:

NameDescription
Arrow

The Arrow.

| | Date |

The Date glyph.

| | Time |

The Time glyph.

| | DateAndTime |

The Date and Time glyph.

|

Remarks

The following code sample displays the Arrow drop-down image:

xaml
<dx:ThemedWindow
  ...
  xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
  xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
  <Grid>
    <dxe:DateEdit>
      <dxe:DateEdit.StyleSettings>
        <dxe:DateEditNavigatorWithTimePickerStyleSettings GlyphKind="Arrow" />
      </dxe:DateEdit.StyleSettings>
    </dxe:DateEdit>
  </Grid>
</dx:ThemedWindow>

See Also

DateEditStyleSettingsBase Class

DateEditStyleSettingsBase Members

DevExpress.Xpf.Editors Namespace