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

OptionsView.NavigationButtonOptions Property

Provides access to the navigation buttons options.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.2.dll

Declaration

public NavigationButtonOptions NavigationButtonOptions { get; set; }

Property Value

Type Description
NavigationButtonOptions

A NavigationButtonOptions class, containing options for displaying navigation buttons.

Property Paths

You can access this nested property as listed below:

Object Type Path to NavigationButtonOptions
SchedulerControl
.OptionsView.NavigationButtonOptions

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Use the NavigationButtonOptions property to customize different options for navigation buttons. For example, use the NavigationButtonOptions.Visibility property to specify when these buttons should be visible, or the NavigationButtonOptions.AppointmentSearchInterval property, to specify how many days a Scheduler control should scan to search for the nearest appointments for displaying navigation buttons.

Example

This example demonstrates how to specify the Scheduler control’s presentation, using the SchedulerControl.OptionsView property.

<dxsch:SchedulerControl.OptionsView>
    <dxsch:OptionsView FirstDayOfWeek="Tuesday" ShowOnlyResourceAppointments="True">
        <dxsch:OptionsView.NavigationButtonOptions>
            <dxsch:NavigationButtonOptions Visibility="Auto" AppointmentSearchInterval="2"/>
        </dxsch:OptionsView.NavigationButtonOptions>
    </dxsch:OptionsView>
</dxsch:SchedulerControl.OptionsView>
See Also