'Declaration Public Property TodayButtonVisibility As Visibility
public Visibility TodayButtonVisibility {get; set;}
The Today button is used to allow the user to select and bring into view the CalendarItem that represents the current date. This button uses the MonthCalendarCommands.Today routed command to perform the operation.
Imports Infragistics.Windows.Editors Imports Infragistics.Windows.Controls Private Sub InitializeCalendar(ByVal calendar As XamMonthCalendar) ' show the week numbers - by default week numbers are not shown calendar.WeekNumberVisibility = Visibility.Visible ' hide the today button - by default it is shown calendar.TodayButtonVisibility = Visibility.Collapsed ' by default the day of week headers are displayed calendar.DayOfWeekHeaderVisibility = Visibility.Visible ' the DayOfWeekHeaderFormat provides several options for ' how much text is displayed for the day of week headers. ' this defaults to 2 characters calendar.DayOfWeekHeaderFormat = DayOfWeekHeaderFormat.SingleCharacter ' hide the scroll buttons - by default they are displayed in the ' upper left and upper right CalendarItemGroups calendar.ScrollButtonVisibility = Visibility.Collapsed End Sub
using Infragistics.Windows.Editors; using Infragistics.Windows.Controls; private void InitializeCalendar(XamMonthCalendar calendar) { // show the week numbers - by default week numbers are not shown calendar.WeekNumberVisibility = Visibility.Visible; // hide the today button - by default it is shown calendar.TodayButtonVisibility = Visibility.Collapsed; // by default the day of week headers are displayed calendar.DayOfWeekHeaderVisibility = Visibility.Visible; // the DayOfWeekHeaderFormat provides several options for // how much text is displayed for the day of week headers. // this defaults to 2 characters calendar.DayOfWeekHeaderFormat = DayOfWeekHeaderFormat.SingleCharacter; // hide the scroll buttons - by default they are displayed in the // upper left and upper right CalendarItemGroups calendar.ScrollButtonVisibility = Visibility.Collapsed; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2