1. Home
  2. Docs
  3. Llamachant Framework Modules
  4. Additional Modules
  5. Wizard Module

Wizard Module

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

  1. Install the from NuGet into your solution
  2. Include the WizardWindowsFormsModule in the RequiredModuleTypes collection of your .Module.Win project
  3. Create detail views to represent your object through the wizard
  4. Assign the detail views as wizard pages in the parent detail view
  5. 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));
    }
}
				
			
Was this article helpful to you? Yes 2 No

How can we help?