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

RibbonControl.PageGroupCaptionButtonClick Event

Enables you to perform actions when end-users click group caption buttons.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Action")]
public event RibbonPageGroupEventHandler PageGroupCaptionButtonClick

#Event Data

The PageGroupCaptionButtonClick event's data class is RibbonPageGroupEventArgs. The following properties provide information specific to this event:

Property Description
PageGroup Gets the processed page group.

#Remarks

Group caption buttons are located at the right bottom corner of group captions.

RibbonGroupCaptionButton

These buttons have no default action. Each time an end-user clicks group caption button the PageGroupCaptionButtonClick event is raised. You can handle this event to associate these buttons with additional commands (for example, a dialog with a set of additional options can be displayed).

The event parameter’s RibbonPageGroupEventArgs.PageGroup property identifies the page group whose caption button has been clicked.

To perform actions when end-users click caption buttons of individual page groups, handle the group’s RibbonPageGroup.CaptionButtonClick event.

See Also