Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerViewBase.MoreButtonsVisibility Property

Gets or sets the visibility state of More buttons in the current View. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v24.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

#Declaration

public MoreButtonVisibility MoreButtonsVisibility { get; set; }

#Property Value

Type Description
MoreButtonVisibility

A DevExpress.Xpf.Scheduling.MoreButtonVisibility enumeration value specifying when the More buttons are visible.

Available values:

Name Description
Auto

More buttons are shown when some appointments for the current time interval are not visible because of the SchedulerControl‘s size.

Always

More buttons are always visible.

Never

More buttons are always hidden.

#Remarks

Use the MoreButtonsVisibility property to specify whether the current view should display or hide the More buttons. The More buttons switch the scheduler to a more detailed view or scroll to subsequent appointments. Click the More button in the Month View to switch the scheduler to the Day View.

The MoreButtonsVisibility property is set to MoreButtonVisibility.Auto by default, so the scheduler displays the More buttons for appointments that do not fit in the current time interval.

See Also