Skip to main content

SchedulerControl.ShowGotoDateForm(DateTime) Method

Invokes the Go To Date dialog with the specified date.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public virtual void ShowGotoDateForm(
    DateTime date
)

Parameters

Name Type Description
date DateTime

A DateTime object representing the date to be shown in the dialog.

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.

The Go To Date dialog allows end-users to change the date on which the SchedulerControl will show its data according to its SchedulerControl.ActiveView. The common appearance of the standard Go To Date form is shown below:

DXScheduler_GoToDateDialog

Use the SchedulerControl.GotoDateFormShowing event to handle the display of this form, for example, to invoke your own custom form instead of the standard one.

See Also