Table of Contents

Class Wizard

Namespace
Acuit.Pinpoint.Windows.Controls
Assembly
Acuit.Pinpoint.Windows.dll

A wizard control.

public class Wizard : ContentControl, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild
Inheritance
Wizard
Implements
Inherited Members

Fields

FinishButtonContentProperty

Identifies the FinishButtonContent dependency property.

public static readonly DependencyProperty FinishButtonContentProperty

Field Value

DependencyProperty

IsLastPageProperty

Identifies the IsLastPage dependency property.

public static readonly DependencyProperty IsLastPageProperty

Field Value

DependencyProperty

IsNextButtonVisibleProperty

Identifies the IsNextButtonVisible dependency property.

public static readonly DependencyProperty IsNextButtonVisibleProperty

Field Value

DependencyProperty

MoveBackPageCommandProperty

Identifies the MoveBackPageCommand dependency property.

public static readonly DependencyProperty MoveBackPageCommandProperty

Field Value

DependencyProperty

MoveNextPageCommandProperty

Identifies the MoveNextPageCommand dependency property.

public static readonly DependencyProperty MoveNextPageCommandProperty

Field Value

DependencyProperty

Properties

FinishButtonContent

Gets or sets the content to display in the finish button. Defaults to "Finish".

public object FinishButtonContent { get; set; }

Property Value

object

IsLastPage

Gets or sets whether the next button should show the FinishButtonContent instead of "Next".

public bool IsLastPage { get; set; }

Property Value

bool

IsNextButtonVisible

Gets or sets whether the next button should be visible. Defaults to true.

public bool IsNextButtonVisible { get; set; }

Property Value

bool

MoveBackPageCommand

Gets or sets the command to invoke when the back button is clicked.

public ICommand MoveBackPageCommand { get; set; }

Property Value

ICommand

MoveNextPageCommand

Gets or sets the command to invoke when the next button is clicked.

public ICommand MoveNextPageCommand { get; set; }

Property Value

ICommand