What problem does it solve? Choosing and configuring the right WarpToolkit grid control for WinForms is confusing: GridView is a virtual-mode, single-column, template-painted control while WarpDataGridView is a classic multi-column DataGridView with SystemColors-based Light/Dark theming, and misusing either leads to broken layouts or lost dark-mode headers. ## Core Features & Use Cases - WarpDataGridView theming: Derives all cell and header colors from SystemColors, re-themes live on UserPreferenceChanged, and supports Auto/Off/Custom alternating row color modes. - GridView template painting: Provides a virtual-mode grid where each row is rendered by a GridViewItemTemplate subclass with DarkMode-aware colors, brushes, and paint/measure overrides. - Data binding patterns: Shows standard BindingSource binding for WarpDataGridView and DataContext/SelectedItem binding for GridView, including strongly-typed WarpRowGridView<TRow> derivation. - Use Case: When building a WinForms settings or scanner UI that must follow the OS Light/Dark theme, use this Skill to pick the correct grid, configure AlternatingRowColorMode, and bind a typed row list without losing dark headers. ## Quick Start Ask the AI to create a WarpDataGridView bound to a BindingSource with automatic theme-aware alternating rows in a WinForms form.