Wizard.NavigationButtonStyle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a reference to a Style object that defines the settings for the buttons in the navigation area on the control.
public:
property System::Web::UI::WebControls::Style ^ NavigationButtonStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style NavigationButtonStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.NavigationButtonStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property NavigationButtonStyle As Style
Property Value
A reference to the Style that defines the style settings for the buttons in the navigation area on the Wizard.
- Attributes
Remarks
The NavigationButtonStyle property defines the appearance for the buttons in the navigation area on the Wizard control. The NavigationButtonStyle property is read-only; however, you can set the properties of the Style object that it returns. You can set these properties declaratively in the form Property-Subproperty
, where Subproperty
represents a property of the Style class (for example, CancelButtonStyle-ForeColor
). You can set a property programmatically in the form Property.Subproperty
(for example, CancelButtonStyle.ForeColor
).
Common settings include custom background color, text color, and font properties. The style settings for the NavigationButtonStyle property are merged with the individual button styles. Any setting that is applied in the individual button style properties overrides the corresponding setting in the NavigationButtonStyle property. For example, if you set the FinishPreviousButtonStyle.ForeColor
property to "red"
and the NavigationButtonStyle.ForeColor
property to "green"
, the color for the button will be red because the individual style settings of the FinishPreviousButtonStyle property override the settings of the NavigationButtonStyle property.
The following NavigationButtonStyle property styles are overridden by individual button style settings: