WizardPage.BackColor Property

 

Gets or sets the background color of the wizard page.

Namespace:   Microsoft.WindowsServerSolutions.Wizards
Assembly:  AdminCommon (in AdminCommon.dll)

Syntax

public override Color BackColor { get; set; }
public:
property Color BackColor {
    virtual Color get() override;
    virtual void set(Color value) override;
}
Public Overrides Property BackColor As Color

Property Value

Type: System.Drawing.Color

A System.Drawing.Color.

Remarks

Make this property read-only so the derived classes do not overwrite it accidentally (and cause high contrast issues). The default background of a wizard page can be changed by placing a panel over the wizard page.

See Also

WizardPage Class
Microsoft.WindowsServerSolutions.Wizards Namespace

Return to top