syncfusion-wpf-colorpicker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-colorpicker (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The ColorPicker is a WPF user interface control for selecting and adjusting color values. It supports multiple color specifications including RGB (Red Green Blue), HSV (Hue Saturation Value), and hexadecimal codes, with built-in gradient editor, eyedropper, color palette, and theming support.
Use the ColorPicker when you need to:
📄 Read: references/getting-started.md
📄 Read: references/solid-gradient-colors.md
📄 Read: references/customization.md
📄 Read: references/appearance-theming.md
📄 Read: references/events-integration.md
<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf">
<Grid>
<syncfusion:ColorPicker Name="colorPicker"
Width="280"
Height="100"/>
</Grid>
</Window>using Syncfusion.Windows.Shared;
ColorPicker colorPicker = new ColorPicker();
colorPicker.Width = 300;
colorPicker.Height = 100;
grid.Children.Add(colorPicker);<syncfusion:ColorPicker Color="Yellow" />Pattern 1: Solid Color Selection - Set Color property and IsColorPaletteVisible="True" for user solid color picking.
Pattern 2: Gradient Selection - Set Brush property with LinearGradientBrush or RadialGradientBrush with GradientStops for gradient selection.
Pattern 3: Respond to Color Changes - Subscribe to ColorChanged and SelectedBrushChanged events to handle real-time color/brush updates.
Pattern 4: Hide Alpha Channel - Set IsAlphaVisible="False" for opaque colors only.
Pattern 5: Lock to Solid Colors - Set EnableSolidToGradientSwitch="False" to prevent gradient mode switching.
| Property | Type | Purpose |
|---|---|---|
Color | Color | Gets or sets the selected solid color |
Brush | Brush | Gets or sets the selected gradient or solid brush |
IsAlphaVisible | bool | Shows/hides alpha (opacity) controls |
IsColorPaletteVisible | bool | Shows/hides built-in color palette |
EnableSolidToGradientSwitch | bool | Allows/prevents switching between modes |
GradientBrushDisplayMode | enum | Sets display mode (Default or Extended) |
| Event | Triggered When |
|---|---|
ColorChanged | Selected solid color changes |
SelectedBrushChanged | Selected brush (gradient) changes |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.