TabWizardControlCore 1.1.0

dotnet add package TabWizardControlCore --version 1.1.0
                    
NuGet\Install-Package TabWizardControlCore -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TabWizardControlCore" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TabWizardControlCore" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="TabWizardControlCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TabWizardControlCore --version 1.1.0
                    
#r "nuget: TabWizardControlCore, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TabWizardControlCore@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TabWizardControlCore&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=TabWizardControlCore&version=1.1.0
                    
Install as a Cake Tool

TabWizardControl Core

A simple wizard control for Windows Forms, built off of a TabControl. This is a .NET 8+ port of the original TabWizardControl made by Nils M�s�n for .NET Framework.

Usage

Install the NuGet package in your project to get started. Add the TabWizardControl from the toolbox to your form and add two buttons for next and previous. In the properties of the TabControlWizard, set NextButton and PreviousButton to the buttons you just added.

By default, the wizard will navigate through the tabs in sequential order. To customize the order or behaviour of the wizard, you can define a custom order of TabPages or use functions and lambda expressions to define custom behaviour.

An example of custom behaviour implemented using lambda expressions:

// Define a specific order to always follow.
wizard.PreviousFunction(Page1, Page3);
    
// Enable the Next button if an item in a combo box is chosen.
wizard.NextFunction(Page1, () => ComboBox.SelectedIndex >= 0);

// Check the state of radio buttons to determine the next page, otherwise return null to disable
// the next button.
wizard.NextFunction(Page1, () => Button1.Checked ? Page2 : Button2.Checked ? Page3 : null);

A fully annotated example of defining custom behaviour is provided in the example project within the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0-windows7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 196 8/5/2025