syncfusion-wpf-wizard-control — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-wizard-control (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.
WizardControl is Syncfusion's WPF wizard UI, modelled after the familiar installation wizard pattern. It hosts one or more WizardPage items and automatically manages Back/Next/Finish/Cancel navigation. Each page's type, banner, and button states are independently configurable. Pages can be added declaratively or bound from a data source.
Assemblies required:
Syncfusion.Shared.WPFSyncfusion.Tools.WPFNamespace: Syncfusion.Windows.Tools.Controls XAML schema: http://schemas.syncfusion.com/wpf
WizardPage items inside WizardControlItemsSource📄 Read: references/getting-started.md
📄 Read: references/page-types-and-navigation.md
PageType enum: Blank, Interior, ExteriorFinishButtonClosesWindow / CancelButtonCancelsWindow📄 Read: references/interactive-features.md
ItemsSource data bindingItemContainerStyle and ItemTemplate for bound pagesSelectedWizardPage — programmatic page selectionTitle and Description on WizardPageNextPage / PreviousPage for non-linear navigationNext event handler📄 Read: references/layout-and-appearance.md
InteriorPageHeaderMinHeightBannerBackground colorBannerImage on WizardPageExteriorPageBannerImageMinWidthSfSkinManager<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf" ...>
<Grid>
<syncfusion:WizardControl Name="wizard"
FinishButtonClosesWindow="True"
CancelButtonCancelsWindow="True">
<syncfusion:WizardPage Title="Welcome"
Description="Introduction to the setup process."
PageType="Exterior"
BannerImage="Images/banner.png"/>
<syncfusion:WizardPage Title="Configuration"
Description="Configure your settings."
PageType="Interior"/>
<syncfusion:WizardPage Title="Finish"
Description="Setup is complete."
PageType="Exterior"/>
</syncfusion:WizardControl>
</Grid>
</Window>using Syncfusion.Windows.Tools.Controls;
WizardControl wizard = new WizardControl();
wizard.FinishButtonClosesWindow = true;
wizard.CancelButtonCancelsWindow = true;
WizardPage page1 = new WizardPage { Title = "Welcome", PageType = WizardPageType.Exterior };
WizardPage page2 = new WizardPage { Title = "Configuration", PageType = WizardPageType.Interior };
WizardPage page3 = new WizardPage { Title = "Finish", PageType = WizardPageType.Exterior };
wizard.Items.Add(page1);
wizard.Items.Add(page2);
wizard.Items.Add(page3);
this.Content = wizard;<!-- First page: hide Back, show Next -->
<syncfusion:WizardPage Title="Step 1" BackVisible="False" NextVisible="True" FinishVisible="False"/>
<!-- Middle page: show Back and Next -->
<syncfusion:WizardPage Title="Step 2" BackVisible="True" NextVisible="True" FinishVisible="False"/>
<!-- Last page: show Back and Finish, hide Next -->
<syncfusion:WizardPage Title="Step 3" BackVisible="True" NextVisible="False" FinishVisible="True"/><syncfusion:WizardControl Name="wizard">
<syncfusion:WizardPage x:Name="step1" Title="Step 1"
NextPage="{Binding ElementName=step3}"/>
<syncfusion:WizardPage x:Name="step2" Title="Step 2"/>
<syncfusion:WizardPage x:Name="step3" Title="Step 3"
PreviousPage="{Binding ElementName=step1}"/>
</syncfusion:WizardControl><syncfusion:WizardControl Next="Wizard_Next" ...>private void Wizard_Next(object sender, RoutedEventArgs e)
{
var wiz = (WizardControl)sender;
// Validate current page before allowing navigation
if (!ValidateCurrentPage())
e.Handled = true; // Cancel navigation
}| Property | Type | Description |
|---|---|---|
SelectedWizardPage | WizardPage | Currently displayed page |
ItemsSource | IEnumerable | Bind pages from a collection |
ItemTemplate | DataTemplate | Template for bound page content |
ItemContainerStyle | Style | Style applied to each WizardPage container |
BackEnabled | bool | Enable/disable Back button globally |
NextEnabled | bool | Enable/disable Next button globally |
FinishEnabled | bool | Enable/disable Finish button globally |
CancelEnabled | bool | Enable/disable Cancel button globally |
BackVisible | bool | Show/hide Back button globally |
NextVisible | bool | Show/hide Next button globally |
FinishVisible | bool | Show/hide Finish button globally |
HelpVisible | bool | Show/hide Help button globally |
CancelVisible | bool | Show/hide Cancel button globally |
BackText | string | Custom label for Back button |
NextText | string | Custom label for Next button |
FinishText | string | Custom label for Finish button |
HelpText | string | Custom label for Help button |
CancelText | string | Custom label for Cancel button |
FinishButtonClosesWindow | bool | Close window on Finish click |
CancelButtonCancelsWindow | bool | Close window on Cancel click |
InteriorPageHeaderMinHeight | double | Min header height for Interior pages |
ExteriorPageBannerImageMinWidth | double | Min banner image width for Exterior pages |
| Property | Type | Description |
|---|---|---|
Title | string | Page title shown in header |
Description | string | Page description shown in header |
PageType | WizardPageType | Blank, Interior, or Exterior |
BannerImage | ImageSource | Banner image for the page |
BannerBackground | Brush | Banner area background color |
NextPage | WizardPage | Override the default next page |
PreviousPage | WizardPage | Override the default previous page |
BackEnabled | bool | Enable/disable Back on this page |
NextEnabled | bool | Enable/disable Next on this page |
FinishEnabled | bool | Enable/disable Finish on this page |
CancelEnabled | bool | Enable/disable Cancel on this page |
BackVisible | bool | Show/hide Back on this page |
NextVisible | bool | Show/hide Next on this page |
FinishVisible | bool | Show/hide Finish on this page |
HelpVisible | bool | Show/hide Help on this page |
CancelVisible | bool | Show/hide Cancel on this page |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.