Modifier

CreateUserWizard.ContinueButtonStyle Property

Definition

Gets a reference to a collection of properties that define the appearance of the Continue button.

public:
 property System::Web::UI::WebControls::Style ^ ContinueButtonStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style ContinueButtonStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.ContinueButtonStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property ContinueButtonStyle As Style

Property Value

A reference to a Style that contains the properties that define the appearance of the Continue button.

Attributes

Remarks

The Wizard.NavigationButtonStyle property determines the appearance of the Continue button in the CreateUserWizard control, but you can override these settings using the ContinueButtonStyle property. This property is read-only; however, you can set the properties of the Style object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, ContinueButtonStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, ContinueButtonStyle.ForeColor).

Common settings include custom background color, text color, and font properties.

The style settings for the ContinueButtonStyle property are merged with the style settings for the CreateUserWizard control. Any settings applied in the ContinueButtonStyle property override the corresponding settings in the CreateUserWizard control.

The following CreateUserWizard style properties are overridden by ContinueButtonStyle settings:

However, when you use templates to define the appearance of the CreateUserWizard control, the ContinueButtonStyle property has no effect.

Applies to

See also