What problem does it solve? WinForms forms often break when resized, moved between monitors with different DPI scaling, or localized into longer languages. This Skill provides concrete layout patterns and Designer-compatible code so forms scale correctly, buttons never clip text, and window state is saved and restored properly. ## Core Features & Use Cases - Fluent Layout Patterns: Nested TableLayoutPanel and FlowLayoutPanel strategies with correct AutoSize, Percent, and Absolute sizing rules, plus Anchor-based cell placement. - Designer-Compatible Code: All examples keep control configuration inside InitializeComponent in the .Designer.cs file so the WinForms Designer never breaks. - High-DPI and Window Management: Per Monitor V2 awareness, fullscreen/kiosk mode state handling, modal dialog patterns, and RestoreBounds-based window position persistence. - Use Case: You are building a settings dialog with grouped radio buttons and OK/Cancel buttons that must render correctly at 150% DPI scaling and in German localization. Apply the RadioButton cluster and ButtonContainer patterns to get uniform, non-clipping, scalable controls. ## Quick Start Use the winforms-high-dpi-fluent-layout skill to redesign my settings form with a nested TableLayoutPanel that scales correctly on high-DPI monitors.