What problem does it solve? WinForms developers often ship bitmap icon libraries that blur on High-DPI displays and fail to adapt to Dark Mode. This Skill provides the WarpToolkit.WinForms FluentSymbols glyph-enum catalog and the rules for rendering crisp, theme-aware font icons on ToolStrip items instead of bitmaps. ## Core Features & Use Cases - Glyph Enum Catalog: Documents the four nested enums under FluentSymbols (AllSymbols, CommonToolStripSymbols, DevelopmentSymbols, TreeViewSymbols) with Unicode code points and intentional aliases like New = AddBold. - ConfigureItem Rendering Rules: Explains the ConfigureItem extension from WarpToolkit.WinForms.Extensions.UI, including the requirement that the item's Owner must be set before configuration. - DarkMode & High-DPI Guidance: Covers glyph sizing via the size parameter or ToolStrip.ImageScalingSize and automatic theme tracking through ForeColor. - Use Case: When building a WinForms command bar, add a ToolStripButton to its strip, then call ConfigureItem with FluentSymbols.CommonToolStripSymbols.Save, a click handler, and a tooltip to get a scalable DarkMode-aware icon. ## Quick Start Use the warptoolkit-symbols skill to add a Save glyph icon with a click handler and tooltip to my ToolStripButton using ConfigureItem.