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

DateNavigator.FirstDayOfWeek Property

Gets or sets the first day of the week in the Date Navigator. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.DateNavigator

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

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

Declaration

public DayOfWeek? FirstDayOfWeek { get; set; }

Property Value

Type Description
Nullable<DayOfWeek>

The first day of the week.

Remarks

Use the FirstDayOfWeek property to specify the first day of week in the DateNavigator control.

DateNavigator_FirstDayOfWeek

Note

If the DateNavigator control is bound to the SchedulerControl, the OptionsView.FirstDayOfWeek property has priority over FirstDayOfWeek.

<Window ...
  xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
  <dxe:DateNavigator FirstDayOfWeek="Monday"/>
</Window>

DateNavigator - FirstDayOfWeek property

See Also