syncfusion-wpf-radial-menu — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-wpf-radial-menu (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 Syncfusion WPF Radial Menu (SfRadialMenu) displays a hierarchical menu in a circular layout, exposing more menu items in the same space than traditional menus. It's ideal for context menus, tool palettes, and touch-enabled interfaces.
Use this skill when the user needs to:
SfRadialMenu is a circular menu control that arranges menu items radially around a center point. It supports:
Namespace: Syncfusion.Windows.Controls.Navigation Assembly: Syncfusion.SfRadialMenu.WPF
📄 Read: references/getting-started.md
📄 Read: references/populating-items.md
📄 Read: references/layout-types.md
📄 Read: references/icons.md
📄 Read: references/appearance-and-styling.md
📄 Read: references/tooltips.md
📄 Read: references/color-palette.md
<Window xmlns:navigation="clr-namespace:Syncfusion.Windows.Controls.Navigation;assembly=Syncfusion.SfRadialMenu.Wpf">
<Grid>
<navigation:SfRadialMenu IsOpen="True">
<navigation:SfRadialMenuItem Header="Bold"/>
<navigation:SfRadialMenuItem Header="Cut"/>
<navigation:SfRadialMenuItem Header="Copy"/>
<navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu>
</Grid>
</Window>using Syncfusion.Windows.Controls.Navigation;
SfRadialMenu radialMenu = new SfRadialMenu();
radialMenu.IsOpen = true;
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Bold" });
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Cut" });
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Copy" });
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Paste" });<navigation:SfRadialMenu IsOpen="True">
<navigation:SfRadialMenuItem Header="Format">
<navigation:SfRadialMenuItem Header="Bold"/>
<navigation:SfRadialMenuItem Header="Italic"/>
<navigation:SfRadialMenuItem Header="Underline"/>
</navigation:SfRadialMenuItem>
<navigation:SfRadialMenuItem Header="Edit">
<navigation:SfRadialMenuItem Header="Cut"/>
<navigation:SfRadialMenuItem Header="Copy"/>
<navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenuItem>
<navigation:SfRadialMenuItem Header="Undo"/>
<navigation:SfRadialMenuItem Header="Redo"/>
</navigation:SfRadialMenu><Grid>
<navigation:SfRadialMenu x:Name="radialMenu">
<navigation:SfRadialMenuItem Header="Bold"/>
<navigation:SfRadialMenuItem Header="Copy"/>
<navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu>
<Button Content="Open Menu" Click="OpenMenu_Click"/>
</Grid>private void OpenMenu_Click(object sender, RoutedEventArgs e)
{
radialMenu.Show();
}// Model
public class EditorCommand
{
public string Name { get; set; }
public string IconPath { get; set; }
public ICommand Command { get; set; }
}
// ViewModel
public class EditorViewModel
{
public List<EditorCommand> Commands { get; set; }
public EditorViewModel()
{
Commands = new List<EditorCommand>
{
new EditorCommand { Name = "Bold", IconPath = "bold.png" },
new EditorCommand { Name = "Copy", IconPath = "copy.png" },
new EditorCommand { Name = "Paste", IconPath = "paste.png" }
};
}
}<navigation:SfRadialMenu IsOpen="True"
ItemsSource="{Binding Commands}"
DisplayMemberPath="Name"
CommandPath="Command"/><navigation:SfRadialMenu IsOpen="True"
LayoutType="Custom"
VisibleSegmentsCount="8">
<navigation:SfRadialMenuItem Header="Item 1" SegmentIndex="0"/>
<navigation:SfRadialMenuItem Header="Item 2" SegmentIndex="2"/>
<navigation:SfRadialMenuItem Header="Item 3" SegmentIndex="4"/>
<navigation:SfRadialMenuItem Header="Item 4" SegmentIndex="6"/>
</navigation:SfRadialMenu><navigation:SfRadialMenu IsOpen="True"
RimBackground="LightBlue"
RimActiveBrush="Orange"
RimHoverBrush="DarkOrange"
CenterRimRadiusFactor="0.3">
<navigation:SfRadialMenuItem Header="Bold"/>
<navigation:SfRadialMenuItem Header="Copy"/>
<navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu><navigation:SfRadialMenu IsOpen="True">
<navigation:SfRadialMenuItem Header="Bold"
Command="{Binding BoldCommand}"
CommandParameter="Bold"
CloseOnExecute="True"/>
<navigation:SfRadialMenuItem Header="Copy"
Command="{Binding CopyCommand}"
CommandParameter="Copy"
CloseOnExecute="True"/>
</navigation:SfRadialMenu>| Property | Type | Description |
|---|---|---|
| IsOpen | bool | Gets or sets whether the radial menu is open |
| ItemsSource | IEnumerable | Business object collection for data binding |
| DisplayMemberPath | string | Property path for item headers |
| CommandPath | string | Property path for item commands |
| LayoutType | LayoutType | Default or Custom layout mode |
| VisibleSegmentsCount | int | Number of segments in Custom layout |
| EnableFreeRotation | bool | Allows manual rotation of the menu |
| RadiusX | double | Horizontal radius of the menu |
| RadiusY | double | Vertical radius of the menu |
| RimBackground | Brush | Outer rim background color |
| RimActiveBrush | Brush | Active expander rim color |
| RimHoverBrush | Brush | Hover state rim color |
| CenterRimRadiusFactor | double | Inner circle size (0.0 to 1.0) |
| Property | Type | Description |
|---|---|---|
| Header | object | Content displayed in the menu item |
| Icon | UIElement | Custom icon for the item |
| Command | ICommand | Command to execute on click |
| CommandParameter | object | Parameter passed to the command |
| SegmentIndex | int | Position in Custom layout mode |
| CloseOnExecute | bool | Close menu after item click |
| CheckMode | CheckMode | None, CheckBox, or Radio behavior |
| IsChecked | bool | Checked state for CheckBox/Radio |
| GroupName | string | Radio button group name |
| ToolTip | string | Tooltip text |
| ToolTipPlacement | Placement | Tooltip position |
| MenuBackgroundColor | Brush | Item background color |
| Event | Description |
|---|---|
| Opened | Fired when the radial menu opens |
| Closed | Fired when the radial menu closes |
| Navigating | Fired when navigating into sub-items (cancellable) |
| Click (MenuItem) | Fired when a menu item is clicked |
| Checked (MenuItem) | Fired when a CheckBox/Radio item is checked |
| UnChecked (MenuItem) | Fired when a CheckBox item is unchecked |
Create a radial menu with formatting options (Bold, Italic, Underline, Font Size, Color) that appears on right-click.
Implement a tool selector with drawing tools (Pen, Brush, Eraser, Shapes) in a circular layout.
Build a color palette using SfRadialColorItem with primary colors at the first level and shades at the second level.
Design a touch-friendly navigation menu for kiosk applications where circular layout provides better accessibility.
Create a hierarchical command menu where top-level items represent categories and sub-items are specific commands.
Implement a floating action button that opens a radial menu with common actions (Edit, Delete, Share, More).
When the user wants to implement a radial menu:
Always consider:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.