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

TdxCustomWizardControl.OnButtonClick Event

In This Article

Enables you to respond to clicks on standard wizard buttons.

#Declaration

Delphi
property OnButtonClick: TdxWizardControlButtonClickEvent read; write;

#Remarks

This event fires when a standard wizard button is clicked. To respond to clicks on custom buttons, handle their OnClick event.

Sender specifies the wizard control whose button is clicked.

AKind identifies the clicked button.

Pass True as the AHandled parameter to prevent the default processing of button clicks. The default processing includes only page navigation with the Back and Next buttons. All other buttons have no predefined functionality.

Note

The OnButtonClick event does not fire for disabled buttons.

See Also