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

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

NuGet Package: 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