What problem does it solve? Building multi-page wizard dialogs in WinForms with Back/Next navigation, per-page validation, and DPI-aware scaling requires coordinating many moving parts; this Skill provides verified guidance for the WarpToolkit.WinForms WizardContainer API so you avoid outdated patterns and common mistakes. ## Core Features & Use Cases - Wizard Page Management: Add and remove WizardPages through WizardContainer.AddWizardPage, with ordered navigation via GoBackAsync, GoNextAsync, and GoToPageAsync. - Per-Page Validation & Navigation Control: Block navigation using PageValidating and PageLeaving events with CancelEventArgs and custom error messages. - DPI-Aware Dialog Display: ShowWizardDialogAsync scales the dialog based on DeviceDpi and returns a WizardDialogResult of Finished, Cancelled, or None. - Use Case: Build a first-run setup wizard for a WinForms app where the user selects an AI provider on one page, enters an API key on the next, and cannot proceed until each page validates. ## Quick Start Use the warptoolkit-wizard skill to create a three-page WinForms wizard dialog with validation on the second page and DPI-aware display.