Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To remove the today button in SfCalendar, you need to set the showTodayButton property to false. This can be done in the constructor of SfCalendar or in XAML as shown below:

C#:

SfCalendar calendar = new SfCalendar();
calendar.ShowTodayButton = false;

XAML:

<calendar:SfCalendar ShowTodayButton="False"/>

This will hide the today button in the SfCalendar control.