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

WizardControl.ShowBackButton Property

Gets or sets whether the Back button is displayed. This property is in effect if WizardControl.WizardStyle is set to WizardStyle.WizardAero.

Namespace: DevExpress.XtraWizard

Assembly: DevExpress.XtraWizard.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

[DefaultValue(true)]
[DXCategory("Appearance")]
public bool ShowBackButton { get; set; }

#Property Value

Type Default Description
Boolean true

true if the Back button is displayed; otherwise, false.

#Remarks

If the ShowBackButton property is set to false, the Back button is completely hidden on all pages. To disable only the button on a particular page, use the BaseWizardPage.AllowBack property.

Note

When WizardControl.WizardStyle is set to WizardStyle.Wizard97, you can hide the Back (Previous) button while handling the WizardControl.CustomizeCommandButtons event.

See Also