TabWizardControlCore 1.1.0
dotnet add package TabWizardControlCore --version 1.1.0
NuGet\Install-Package TabWizardControlCore -Version 1.1.0
<PackageReference Include="TabWizardControlCore" Version="1.1.0" />
<PackageVersion Include="TabWizardControlCore" Version="1.1.0" />
<PackageReference Include="TabWizardControlCore" />
paket add TabWizardControlCore --version 1.1.0
#r "nuget: TabWizardControlCore, 1.1.0"
#:package TabWizardControlCore@1.1.0
#addin nuget:?package=TabWizardControlCore&version=1.1.0
#tool nuget:?package=TabWizardControlCore&version=1.1.0
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-windows7.0 is compatible. net9.0-windows was computed. net10.0-windows was computed. |
-
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 |