What problem does it solve? Building UI layouts in MewUI requires knowing which panel to use and the correct fluent API syntax, which differs from standard WPF conventions (e.g., .DockTo() instead of .Dock(), single Spacing property). This Skill provides the exact patterns for arranging elements with StackPanel, Grid, Canvas, DockPanel, and WrapPanel. ## Core Features & Use Cases - Panel Quick Reference: Covers StackPanel, Grid, Canvas, DockPanel, and WrapPanel with fluent C# code examples for each layout scenario. - Attached Properties: Documents Grid row/column positioning, Canvas coordinates, and DockPanel docking via ConditionalWeakTable-based attached properties. - Custom Panel Creation: Provides the MeasureContent/ArrangeContent override pattern with complete RadialPanel and TilePanel examples. - Use Case: When building a settings dialog with a toolbar on top, status bar at bottom, and a grid of form fields, use this Skill to compose DockPanel and Grid with correct MewUI syntax. ## Quick Start Use the using-mewui-layout skill to create a Grid layout with a header row spanning two columns and a button in the bottom-right cell.