syncfusion-wpf-toolbar — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-toolbar (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.
Reference this skill when users need to:
ToolBarAdv is a container control for grouping related commands or controls, typically consisting of buttons that invoke actions. It provides:
Key Controls:
ToolBarAdv - Main toolbar containerToolBarTrayAdv - Container for organizing multiple toolbars in bandsToolBarManager - Layout manager for positioning toolbars at Top/Bottom/Left/RightToolBarItemSeparator - Visual separator between toolbar itemsAssembly: Syncfusion.Shared.WPF Namespace: Syncfusion.Windows.Tools.Controls
📄 Read: references/getting-started.md
📄 Read: references/positioning-and-layout.md
📄 Read: references/add-remove-buttons.md
📄 Read: references/toolbar-states.md
📄 Read: references/toolbar-manager.md
📄 Read: references/customization-theming.md
XAML:
<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf">
<syncfusion:ToolBarTrayAdv>
<syncfusion:ToolBarAdv ToolBarName="Standard" Height="40">
<!-- New Document Button -->
<Button Width="22" Height="22" ToolTip="New">
<Image Source="Images/NewDocumentHS.png" Width="16" Height="16"/>
</Button>
<!-- Open Document Button -->
<Button Width="22" Height="22" ToolTip="Open">
<Image Source="Images/openHS.png" Width="16" Height="16"/>
</Button>
<!-- Separator -->
<syncfusion:ToolBarItemSeparator />
<!-- Save Button -->
<Button Width="22" Height="22" ToolTip="Save">
<Image Source="Images/saveHS.png" Width="16" Height="16"/>
</Button>
</syncfusion:ToolBarAdv>
</syncfusion:ToolBarTrayAdv>
</Window>C#:
using Syncfusion.Windows.Tools.Controls;
// Create toolbar
ToolBarAdv toolBar = new ToolBarAdv();
toolBar.ToolBarName = "Standard";
toolBar.Height = 40;
// Add New button
Button newButton = new Button
{
Width = 22,
Height = 22,
ToolTip = "New",
Content = new Image
{
Source = new BitmapImage(new Uri("Images/NewDocumentHS.png", UriKind.Relative)),
Width = 16,
Height = 16
}
};
toolBar.Items.Add(newButton);
// Add to ToolBarTray
ToolBarTrayAdv tray = new ToolBarTrayAdv();
tray.ToolBars.Add(toolBar);
// Add to window
this.Content = tray;XAML:
<syncfusion:ToolBarManager x:Name="toolBarManager">
<!-- Top Toolbar -->
<syncfusion:ToolBarManager.TopToolBarTray>
<syncfusion:ToolBarTrayAdv>
<syncfusion:ToolBarAdv ToolBarName="File">
<Button Width="22" Height="22" ToolTip="New">
<Image Source="Images/NewDocumentHS.png" Width="16" Height="16"/>
</Button>
</syncfusion:ToolBarAdv>
</syncfusion:ToolBarTrayAdv>
</syncfusion:ToolBarManager.TopToolBarTray>
<!-- Left Toolbar -->
<syncfusion:ToolBarManager.LeftToolBarTray>
<syncfusion:ToolBarTrayAdv Orientation="Vertical">
<syncfusion:ToolBarAdv ToolBarName="Tools">
<Button Width="22" Height="22" ToolTip="Cut">
<Image Source="Images/CutHS.png" Width="16" Height="16"/>
</Button>
</syncfusion:ToolBarAdv>
</syncfusion:ToolBarTrayAdv>
</syncfusion:ToolBarManager.LeftToolBarTray>
<!-- Main Content -->
<syncfusion:ToolBarManager.Content>
<TextBox Text="Your application content here"/>
</syncfusion:ToolBarManager.Content>
</syncfusion:ToolBarManager><syncfusion:ToolBarTrayAdv>
<!-- First toolbar on Band 0 -->
<syncfusion:ToolBarAdv Band="0" BandIndex="0" ToolBarName="Standard">
<Button Content="New"/>
<Button Content="Open"/>
</syncfusion:ToolBarAdv>
<!-- Second toolbar on same band -->
<syncfusion:ToolBarAdv Band="0" BandIndex="1" ToolBarName="Extras">
<Button Content="Cut"/>
<Button Content="Copy"/>
</syncfusion:ToolBarAdv>
<!-- Third toolbar on different band -->
<syncfusion:ToolBarAdv Band="1" BandIndex="0" ToolBarName="Format">
<Button Content="Bold"/>
<Button Content="Italic"/>
</syncfusion:ToolBarAdv>
</syncfusion:ToolBarTrayAdv><syncfusion:ToolBarAdv>
<!-- Always visible -->
<Button syncfusion:ToolBarAdv.OverflowMode="Never"
Content="Important"/>
<!-- Can overflow when needed -->
<Button syncfusion:ToolBarAdv.OverflowMode="AsNeeded"
Content="Normal"/>
<!-- Always in overflow -->
<Button syncfusion:ToolBarAdv.OverflowMode="Always"
Content="Advanced"/>
</syncfusion:ToolBarAdv><syncfusion:ToolBarAdv EnableAddRemoveButton="True">
<Button syncfusion:ToolBarAdv.Label="New Document"
syncfusion:ToolBarAdv.Icon="Images/NewDocumentHS.png">
<Image Source="Images/NewDocumentHS.png" Width="16" Height="16"/>
</Button>
<Button syncfusion:ToolBarAdv.Label="Open Document"
syncfusion:ToolBarAdv.Icon="Images/openHS.png">
<Image Source="Images/openHS.png" Width="16" Height="16"/>
</Button>
</syncfusion:ToolBarAdv><syncfusion:ToolBarManager>
<syncfusion:ToolBarManager.TopToolBarTray>
<syncfusion:ToolBarTrayAdv>
<syncfusion:ToolBarAdv
ToolBarName="FloatingTools"
syncfusion:ToolBarManager.ToolBarState="Floating"
FloatingBarLocation="500,300">
<Button Content="Tool 1"/>
<Button Content="Tool 2"/>
</syncfusion:ToolBarAdv>
</syncfusion:ToolBarTrayAdv>
</syncfusion:ToolBarManager.TopToolBarTray>
</syncfusion:ToolBarManager>| Property | Description | Type | When to Use |
|---|---|---|---|
Band | Band index where toolbar should be placed | int | Position toolbar in specific row/column |
BandIndex | Position within the band | int | Order multiple toolbars in same band |
ToolBarName | Display name for toolbar | string | Identify toolbar to users |
GripperVisibility | Show/hide gripper handle | Visibility | Control user repositioning ability |
FloatingBarLocation | Position for floating state | Point | Set custom floating position |
IsOverflowOpen | Overflow popup open state | bool | Programmatically open/close overflow |
EnableAddRemoveButton | Show add/remove menu | bool | Allow users to customize visible items |
| Property | Description | Type | When to Use |
|---|---|---|---|
TopToolBarTray | Toolbar tray at top | ToolBarTrayAdv | Position toolbars at top |
BottomToolBarTray | Toolbar tray at bottom | ToolBarTrayAdv | Position toolbars at bottom |
LeftToolBarTray | Toolbar tray at left | ToolBarTrayAdv | Position toolbars at left |
RightToolBarTray | Toolbar tray at right | ToolBarTrayAdv | Position toolbars at right |
CanDockAtTop/Bottom/Left/Right | Allow docking at position | bool | Restrict docking positions |
Content | Main application content | UIElement | Content displayed in remaining space |
Create standard application toolbar with File, Edit, Format commands positioned at top.
When: Building document editors, IDEs, or productivity applications Read: references/getting-started.md, references/toolbar-manager.md
Multiple toolbars organized in bands, showing/hiding based on current context or selection.
When: Complex applications with mode-specific commands Read: references/positioning-and-layout.md, references/add-remove-buttons.md
Detachable toolbars that users can position anywhere on screen.
When: Graphics editors, design tools, or applications with detachable panels Read: references/toolbar-states.md, references/toolbar-manager.md
Allow users to show/hide toolbar items based on their preferences.
When: Applications with power users who want to customize their workspace Read: references/add-remove-buttons.md
Never~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.