syncfusion-wpf-timepicker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-timepicker (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 SfTimePicker is a WPF control that enables touch-friendly time value selection with customizable formatting, time selector UI, and comprehensive styling options. This skill guides you through implementing, configuring, and customizing time picker controls for WPF applications.
Choose your task below to jump to the relevant documentation:
📄 Read: references/getting-started.md
📄 Read: references/setting-time-values.md
📄 Read: references/time-formatting.md
📄 Read: references/time-selector-customization.md
📄 Read: references/appearance-and-styling.md
<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf">
<Grid>
<!-- Basic time picker -->
<syncfusion:SfTimePicker x:Name="timePicker"
Width="200"
Value="04:30:00"
ValueChanged="TimePicker_ValueChanged"/>
</Grid>
</Window>using Syncfusion.Windows.Controls.Input;
SfTimePicker timePicker = new SfTimePicker();
timePicker.Value = new TimeSpan(14, 30, 00); // 2:30 PM
timePicker.ValueChanged += (d, e) =>
Console.WriteLine($"Time changed to: {e.NewValue}");<syncfusion:SfTimePicker FormatString="HH:mm:ss"
SelectorFormatString="HH:mm"/><syncfusion:SfTimePicker AllowNull="True"
Value="{x:Null}"
Watermark="Select a time"/><syncfusion:SfTimePicker AllowInlineEditing="False"
ShowDropDownButton="False"
Value="09:00:00"/><syncfusion:SfTimePicker SelectorItemWidth="60"
SelectorItemHeight="60"
SelectorItemSpacing="20"/>| Property | Default | Purpose |
|---|---|---|
Value | Current system time | Get/set the selected time as TimeSpan |
FormatString | "h:mm tt" | Display format (12-hr/24-hr) |
SelectorFormatString | "h:mm tt" | Format for time picker cells |
AllowNull | false | Enable null value support |
Watermark | — | Placeholder text when Value is null |
AllowInlineEditing | true | Allow direct text editing |
ShowDropDownButton | true | Show dropdown button |
SetValueOnLostFocus | false | Update value when focus lost |
SelectorItemWidth | 30 | Width of selector cells (pixels) |
SelectorItemHeight | 30 | Height of selector cells (pixels) |
SelectorItemSpacing | 4 | Space between selector items (pixels) |
Foreground | — | Text color |
Background | — | Control background color |
AccentBrush | — | Selected item highlight color |
FlowDirection | LeftToRight | Support RTL layouts |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.