RadControls for WinForms

RadWizard supports both Wizard 97 and Wizard Aero specifications.. You can set the mode of the control using its Mode property:

Copy[C#] Setting modes
this.radWizard1.Mode = WizardMode.Wizard97;
Copy[VB.NET] Setting modes
Me.RadWizard1.Mode = WizardMode.Wizard97

wizard-mode 001

The Aero style of Wizard Aero mode can be enabled (for Windows Vista and later versions) or disabled. You can achieve it using the EnableAeroStyle property of RadWizard.

Copy[C#] Enabling aero style
this.radWizard1.Mode = WizardMode.Aero;
this.radWizard1.EnableAeroStyle = true;
Copy[VB.NET] Enabling aero style
Me.RadWizard1.Mode = WizardMode.Aero
Me.RadWizard1.EnableAeroStyle = True

wizard-mode 001

Disable Aero Style

Copy[C#] Disable aero style
this.radWizard1.Mode = WizardMode.Aero;
this.radWizard1.EnableAeroStyle = false;
Copy[VB.NET] Disable aero style
Me.RadWizard1.Mode = WizardMode.Aero
Me.RadWizard1.EnableAeroStyle = False

When RadWizard is in Aero mode with disabled Aero style, the appearance of the control is defined by the styles in its theme.