Skip to main content

DateNavigator.DayNameFormat Property

Gets or sets the value that specifies the format for names of the days of the week. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Editors

Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public CalendarDayNameFormat DayNameFormat { get; set; }

Property Value

Type Description
CalendarDayNameFormat

A CalendarDayNameFormat enumeration value. By default, CalendarDayNameFormat.AbbreviatedName.

Available values:

Name Description
FullName

Full names of the days of the week are shown.

AbbreviatedName

Abbreviated names of the days of the week are shown: Sun, Mon, Tue, Wed, Thu, Fri, Sat

ShortestName

Shortest names of the days of the week are shown: Su, Mo, Tu, We, Th, Fr, Sa

Remarks

The days of the week are shown in the month view if the DateNavigator.ShowDaysOfWeek property is set to true.

See Also