Table of Contents

Interface IWizardHost

Namespace
The.WPF.Wizards
Assembly
Instagile.WPF.dll
public interface IWizardHost
Extension Methods

Properties

CompleteCommandName

string CompleteCommandName { get; set; }

Property Value

string

Methods

CalculateIfChanged<T, U>(T, Func<T, U>)

U CalculateIfChanged<T, U>(T input, Func<T, U> deriveDependentData)

Parameters

input T
deriveDependentData Func<T, U>

Returns

U

Type Parameters

T
U

GoToPage(int)

void GoToPage(int index)

Parameters

index int

NextPage()

void NextPage()

NotifyStepsChanged()

void NotifyStepsChanged()

NotifyValidityChanged()

void NotifyValidityChanged()

PreviousPage()

void PreviousPage()

ShowPage(Control, Func<bool>?, string?)

Task ShowPage(Control page, Func<bool>? validate, string? title)

Parameters

page Control
validate Func<bool>
title string

Returns

Task