What problem does it solve? Building desktop UIs with the MewUI framework requires knowing its specific fluent API conventions, which differ from WPF and other C# UI frameworks (e.g., no ShowDialog(), no Closing event, Action-based events instead of EventHandler). This Skill provides the correct patterns so generated MewUI code compiles and behaves as expected. ## Core Features & Use Cases - Application & Window Setup: Configure Application.Run(), graphics backends, window sizing helpers, and multi-window management with correct MewUI semantics. - Controls, Theming & Layout: Use built-in controls (Label, TextBox, Button, ComboBox, Slider, etc.), Theme.Palette/Metrics access, fluent styling, and DockPanel layout patterns. - Dialogs & Popups: Implement MessageBox, file dialogs, context menus, and custom dialog windows using MewUI's non-modal window model. - Use Case: When scaffolding a new C# desktop tool with MewUI, generate a main window with a menu, toolbar, sidebar, and status bar, plus a confirmation dialog, all using the correct fluent API calls. ## Quick Start Create a new MewUI application with a main window containing a docked toolbar, a list of items, and a confirmation dialog using the correct fluent API.