New to Telerik UI for WPFStart a free 30-day trial

Set Today

Updated on Sep 15, 2025

The scheduleview control allows you to easily navigate to the current day. You can do this via the Today button shown in Figure 1 or by executing the RadScheduleViewCommands.SetToday command.

Showing the Today button

The Today button is hidden by default. To show it in the navigation header you can set the TodayButtonVisibility property.

Example 1: Showing the Today button

XAML
	<telerik:RadScheduleView TodayButtonVisibility="Visible" />

Figure 1: Today button

WPF RadScheduleView Today button

Set Today in Code

You can navigate to the current day in the view using the RadScheduleViewCommands.SetToday command.

Example 2: Set today in code

C#
	RadScheduleViewCommands.SetToday.Execute(null, scheduleView);

Read more about the available commands in the Commands article.

See Also