What problem does it solve? Adding path pickers, binding-aware combo boxes, or fractional sliders to a WinForms form requires knowing the exact properties, defaults, and Designer-serialization rules of the WarpToolkit.WinForms controls, which differ from the standard .NET controls. ## Core Features & Use Cases - FilePathPicker: A text field with pick and reveal buttons wired to OpenFile, SaveFile, or FolderBrowser dialogs, with Designer-serialized properties like Filter, DialogTitle, and MultiSelect. - BindableComboBox: A ComboBox subclass exposing a bindable SelectedBindingValue property for two-way view-model binding, with automatic DataSource assignment from an IList DataContext. - Floating-point sliders: FloatingPointSlider, FloatingPointTrackBar, and EditFloatingPointSlider expose float Minimum, Maximum, and Value members for fractional ranges such as opacity from 0 to 1. - Use Case: When building a settings form that needs a folder picker for a chat directory and a decimal opacity slider, use this Skill to generate Designer-compliant InitializeComponent code with the correct property defaults and event wiring. ## Quick Start Add a FilePathPicker in folder-browser mode and an EditFloatingPointSlider ranging from 0 to 1 to my WinForms form using WarpToolkit.WinForms.