syncfusion-wpf-step-progressbar — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-step-progressbar (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 SfStepProgressBar is a multi-step progress indicator for visualizing sequential workflows. Each step is a StepViewItem with active, inactive, or indeterminate status. Use it for order tracking, registration wizards, checkout flows, onboarding, or any process with discrete numbered stages.
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Syncfusion="http://schemas.syncfusion.com/wpf"
x:Class="MyApp.MainWindow">
<Grid x:Name="grid">
<Syncfusion:SfStepProgressBar SelectedIndex="2" SelectedItemStatus="Indeterminate">
<Syncfusion:StepViewItem Content="Ordered" />
<Syncfusion:StepViewItem Content="Packed" />
<Syncfusion:StepViewItem Content="Shipped" />
<Syncfusion:StepViewItem Content="Delivered" />
</Syncfusion:SfStepProgressBar>
</Grid>
</Window>using Syncfusion.UI.Xaml.ProgressBar;
SfStepProgressBar stepProgressBar = new SfStepProgressBar();
stepProgressBar.Items.Add(new StepViewItem { Content = "Ordered" });
stepProgressBar.Items.Add(new StepViewItem { Content = "Packed" });
stepProgressBar.Items.Add(new StepViewItem { Content = "Shipped" });
stepProgressBar.Items.Add(new StepViewItem { Content = "Delivered" });
stepProgressBar.SelectedIndex = 2;
stepProgressBar.SelectedItemStatus = StepStatus.Indeterminate;
grid.Children.Add(stepProgressBar);SelectedIndex — zero-based index of the last active step (all steps before it become Active)SelectedItemStatus — status of the selected step: Active, Inactive, or Indeterminate📄 Read: references/getting-started.md
📄 Read: references/selected-item-and-status.md
📄 Read: references/appearance.md
📄 Read: references/layouts.md
📄 Read: references/data-binding-and-templates.md
| Property | Type | Default | Purpose |
|---|---|---|---|
SelectedIndex | int | — | Zero-based index of last active step |
SelectedItemStatus | StepStatus | Inactive | Status of the selected step |
SelectedItemProgress | double | 100 | Partial fill % on the selected step |
AnimationDuration | TimeSpan | 500ms | Step transition animation speed |
Orientation | Orientation | Horizontal | Horizontal or vertical layout |
MarkerShapeType | MarkerShapeType | Circle | Circle or Square step markers |
ActiveConnectorColor | Brush | — | Color of connector between active steps |
ConnectorColor | Brush | — | Color of connector between inactive steps |
ConnectorThickness | double | — | Thickness of connector lines |
ItemsStretch | ItemsStretch | None | How items fill available space |
ItemSpacing | double | 80 | Space between steps (None stretch) |
SelectedItemStatus="Indeterminate" for the in-transit stepItemsStretch="Fill" to fill the panel heightMarkerTemplateSelector to show checkmarks on completed steps and spinner on currentItemsSource bound to ObservableCollection<StepItem> with SelectedIndex bound to a command~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.