Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public DateEditGlyphKind? GlyphKind { get; set; }

#Property Value

Type Default Description
Nullable<DateEditGlyphKind> null

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

Available values:

Name Description
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:

<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>

DateEdit - GlyphKind property

See Also