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

NavigatorButtonClickEventArgs Class

Supplies data for the NavigatorBase.ButtonClick event.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public class NavigatorButtonClickEventArgs :
    EventArgs

#Remarks

The NavigatorBase.ButtonClick event is raised each time a user clicks a navigator button. It allows you to override the clicked button’s default action or perform additional actions when buttons are clicked. The NavigatorButtonClickEventArgs class introduces the NavigatorButtonClickEventArgs.Button property, which identifies the clicked button. The NavigatorButtonClickEventArgs.Handled property specifies whether the button’s default action is prohibited. It must be set to true to prohibit the clicked button’s default behavior.

NavigatorButtonClickEventArgs objects are automatically created and passed to NavigatorBase.ButtonClick event handlers.

#Inheritance

Object
EventArgs
NavigatorButtonClickEventArgs
See Also