This module allows you to create multiple detail views displayed in a wizard for a single object. The wizard can always be shown instead of the default detail view or only when a new object is created.
Getting Started
Install the from NuGet into your solution
Include the WizardWindowsFormsModule in the RequiredModuleTypes collection of your .Module.Win project
Create detail views to represent your object through the wizard
Assign the detail views as wizard pages in the parent detail view
Set the ShowInWizard model property on the parent detail view
public sealed partial class TestApplicationWindowsFormsModule : ModuleBase
{
public TestApplicationWindowsFormsModule() {
InitializeComponent();
RequiredModuleTypes.Add(typeof(LlamachantFramework.Wizard.Win.WizardWindowsFormsModule));
}
}