In This Article

WizardWelcomePage Class

Represents a welcome page within a Wizard control.

public class WizardWelcomePage : WizardPage, IUIControl, IUIElement, ILogicalTreeNode, IDpiAwareElement, IDisposable
Inheritance:
object MarshalByRefObject Component Control ScrollableControl ContainerControl UIContainerControl WizardPage object
Implements:
IUIControl IUIElement ILogicalTreeNode IDpiAwareElement IDisposable

Remarks

This class is used to track information relating to a welcome page in a Wizard control.

Constructors

WizardWelcomePage()

Initializes a new instance of the WizardWelcomePage class.

public WizardWelcomePage()

See Also

Properties

PageCaption

Gets or sets the caption of the page.

public override string PageCaption { get; set; }

Property Value

string:

The caption displayed on the Wizard for the page.

See Also

PageDescription

Gets or sets the description of the page.

public override string PageDescription { get; set; }

Property Value

string:

The description displayed on the Wizard for the page.

See Also

PageTitleBarText

Gets or sets the title bar text of the page.

public override string PageTitleBarText { get; set; }

Property Value

string:

The title bar text displayed on a WizardDialogForm for the page.

See Also

WatermarkBackgroundFill

Gets or sets the page-specific BackgroundFill for the watermark area.

public BackgroundFill WatermarkBackgroundFill { get; set; }

Property Value

BackgroundFill:

The page-specific BackgroundFill for the watermark area.

See Also

WatermarkImage

Gets or sets the image to display in the upper-right corner of the watermark area.

public Image WatermarkImage { get; set; }

Property Value

Image:

An Image specifying the image to display in the upper-right corner of the watermark area.

Remarks

The Wizard97 specification calls for the size of the watermark image to be 61x61 pixels.

See Also

WatermarkImageLocation

Gets or sets the location of the watermark image within the watermark area.

public Point WatermarkImageLocation { get; set; }

Property Value

Point:

A Point specifying the location of the watermark image.

See Also

WatermarkImageSize

Gets or sets the size of the watermark image within the watermark area.

public Size WatermarkImageSize { get; set; }

Property Value

Size:

A Size specifying the size of the watermark image.

See Also

WatermarkWidth

Gets or sets the width of the watermark area.

public int WatermarkWidth { get; set; }

Property Value

int:

The width of the watermark area.

Remarks

The Wizard97 specification calls for the width of the watermark area to be 164 pixels.

See Also

Methods

Dispose(bool)

Clean up any resources being used.

protected override void Dispose(bool disposing)
Parameter Type Description
disposing bool

See Also

OnRender(PaintEventArgs)

Renders the element.

protected override void OnRender(PaintEventArgs e)
Parameter Type Description
e PaintEventArgs

A PaintEventArgs that contains the event data.

See Also

ResetWatermarkBackgroundFill()

Resets the WatermarkBackgroundFill property to its default value.

public virtual void ResetWatermarkBackgroundFill()

See Also

ResetWatermarkImage()

Resets the WatermarkImage property to its default value.

public void ResetWatermarkImage()

See Also

ResetWatermarkImageLocation()

Resets the WatermarkImageLocation property to its default value.

public void ResetWatermarkImageLocation()

See Also

ResetWatermarkImageSize()

Resets the WatermarkImageSize property to its default value.

public void ResetWatermarkImageSize()

See Also

ShouldSerializeWatermarkBackgroundFill()

Indicates whether the WatermarkBackgroundFill property should be persisted.

public virtual bool ShouldSerializeWatermarkBackgroundFill()

Returns

bool:

true if the property value has changed from its default; otherwise, false.

See Also

ShouldSerializeWatermarkImage()

Indicates whether the WatermarkImage property should be persisted.

public bool ShouldSerializeWatermarkImage()

Returns

bool:

true if the property value has changed from its default; otherwise, false.

See Also

ShouldSerializeWatermarkImageLocation()

Indicates whether the WatermarkImageLocation property should be persisted.

public bool ShouldSerializeWatermarkImageLocation()

Returns

bool:

true if the property value has changed from its default; otherwise, false.

See Also

ShouldSerializeWatermarkImageSize()

Indicates whether the WatermarkImageSize property should be persisted.

public bool ShouldSerializeWatermarkImageSize()

Returns

bool:

true if the property value has changed from its default; otherwise, false.

See Also

Inherited Members

See Also