syncfusion-wpf-tab-navigation — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-tab-navigation (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.
Use this skill when the user needs to:
TabNavigationControl (root container)
└── TabNavigationItem (×N) (each page/item)
├── Header — tab label text
└── Content — page content (any UIElement)Assemblies: Syncfusion.Tools.WPF + Syncfusion.Shared.WPF Namespace: Syncfusion.Windows.Tools.Controls XAML schema: http://schemas.syncfusion.com/wpf
📄 Read: references/getting-started.md
📄 Read: references/data-binding.md
📄 Read: references/transition-effects.md
📄 Read: references/appearance.md
HeaderVisibility — show/hide the header tab stripNavigationButtonVisibility — show/hide prev/next arrowsTabStripVisibility — show/hide the tab strip panelxmlns:syncfusion="http://schemas.syncfusion.com/wpf"
<syncfusion:TabNavigationControl x:Name="tabNavigation"
TransitionEffect="Slide"
Width="400" Height="300">
<syncfusion:TabNavigationItem Header="Page 1">
<syncfusion:TabNavigationItem.Content>
<TextBlock Text="Welcome to Page 1" FontSize="18" HorizontalAlignment="Center"/>
</syncfusion:TabNavigationItem.Content>
</syncfusion:TabNavigationItem>
<syncfusion:TabNavigationItem Header="Page 2">
<syncfusion:TabNavigationItem.Content>
<TextBlock Text="Welcome to Page 2" FontSize="18" HorizontalAlignment="Center"/>
</syncfusion:TabNavigationItem.Content>
</syncfusion:TabNavigationItem>
<syncfusion:TabNavigationItem Header="Page 3">
<syncfusion:TabNavigationItem.Content>
<TextBlock Text="Welcome to Page 3" FontSize="18" HorizontalAlignment="Center"/>
</syncfusion:TabNavigationItem.Content>
</syncfusion:TabNavigationItem>
</syncfusion:TabNavigationControl>using Syncfusion.Windows.Tools.Controls;
TabNavigationControl tabNavigation = new TabNavigationControl();
tabNavigation.TransitionEffect = TransitionEffect.Slide;
TabNavigationItem item1 = new TabNavigationItem { Header = "Page 1", Content = "Content 1" };
TabNavigationItem item2 = new TabNavigationItem { Header = "Page 2", Content = "Content 2" };
tabNavigation.Items.Add(item1);
tabNavigation.Items.Add(item2);
this.Content = tabNavigation;| Scenario | Approach |
|---|---|
| Static page set | Declarative TabNavigationItem in XAML |
| Dynamic data-driven tabs | ItemsSource + ObservableCollection<TabNavigationItem> |
| Smooth slide transition | TransitionEffect="Slide" |
| Fade between content | TransitionEffect="Fade" |
| Hide all chrome (full-screen content) | HeaderVisibility="Collapsed" + TabStripVisibility="Collapsed" + NavigationButtonVisibility="Collapsed" |
| Auto-rotating banner | Bind ItemsSource + control SelectedIndex via timer |
| Property | Type | Description |
|---|---|---|
TransitionEffect | TransitionEffect enum | Animation when switching items |
ItemsSource | IEnumerable | Data collection for data-bound population |
HeaderVisibility | Visibility | Show/hide the header tab strip |
NavigationButtonVisibility | Visibility | Show/hide prev/next arrow buttons |
TabStripVisibility | Visibility | Show/hide the tab strip panel |
TabNavigationItem properties:
| Property | Description |
|---|---|
Header | Tab label text |
Content | Page content (string or UIElement) |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.