What problem does it solve? Building modern WinForms interfaces with stock controls means hand-rolling dark mode, wizards, async dialogs, and state persistence. This Skill provides guidance for the WARP-Toolkit packages (WarpToolkit.WinForms, Extensions, Specialized) so you can add fluent controls, MVVM-style commands, and designer-compatible layouts without reinventing them. ## Core Features & Use Cases - Fluent Controls & Layouts: FluentTabControl, FluentMessageBox, WizardContainer, FilePathPicker, BindableComboBox, plus AdornerPanel/AdornerTableLayoutPanel grid layouts with borders and error signalling. - Helpers & Extensions: Strongly-typed control-tree traversal, IValueConverter binding, DataGridView dark mode, form/grid/splitter state persistence via IUserSettingsService, async ShowDialogAsync with typed data contexts, and symbol-font icons. - Specialized Tools: Interactive ConsoleControl for in-process terminals and FilenameDisambiguator for collision-free save/export filenames. - Use Case: You need a modal dialog that returns a typed result from async code. Use ShowDialogAsync(viewModel) to set the form's DataContext, await the DialogResult, and read back the edited view-model properties. ## Quick Start Ask the AI to add a FluentMessageBox confirmation dialog and a WizardContainer-based multi-step setup flow to your WinForms form using the WARP-Toolkit packages.