DateNavigator.SelectionView Property
In This Article
Gets or sets a calendar view in which a user can select a value. This is a dependency property.
Namespace: DevExpress.Xpf.Editors.DateNavigator
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
#Property Value
Type | Description |
---|---|
Date |
A calendar view in which a user can select a value. |
Available values:
Name | Description |
---|---|
Month | Applies monthly calendars within the Date |
Year | Applies yearly calendars within the Date |
Years | A calendar of the Date |
Years |
A calendar of the Date |
#Remarks
The following code sample sets the SelectionView property to DateNavigatorCalendarView.Year:
<Window ...
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
<dxe:DateNavigator SelectionView="Year"/>
</Window>
See Also