Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

syncfusion-winforms-contextmenustrip同步融合 winforms contextmenustrip

Agent Skill

syncfusion-winforms-contextmenustrip 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

784

周安装

33

GitHub Stars

1

下载量

275
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-winforms-contextmenustrip(同步融合 winforms contextmenustrip)
来源仓库:https://github.com/syncfusion/winforms-ui-components-skills
仓库路径:skills/syncfusion-winforms-contextmenustrip
安装命令:
npx skills add https://github.com/syncfusion/winforms-ui-components-skills --skill syncfusion-winforms-contextmenustrip
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/winforms-ui-components-skills --skill syncfusion-winforms-contextmenustrip

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持根据关键词、任务场景或来源线索进行信息匹配。
  • 通过 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网操作。
  • 适用于需要精准检索信息的场景。

SKILL.md

Implementing ContextMenuStripEx

Guide for implementing enhanced context menus with rich item types, multi-level navigation, and extensive customization options in Windows Forms applications.

When to Use This Skill

Use this skill when you need to:

  • Add context menus (right-click menus) to Windows Forms controls
  • Implement multi-level menu hierarchies with submenus
  • Create menus with mixed item types (MenuItem, TextBox, ComboBox, Separator)
  • Configure checked/unchecked states for menu items
  • Add keyboard shortcuts to menu items
  • Customize menu appearance (colors, fonts, sizing)
  • Handle menu item click events and triggers
  • Enable/disable menu items dynamically
  • Implement auto-close behavior for menus
  • Support touch mode in menu interfaces

Component Overview

ContextMenuStripEx is an enhanced version of the standard Windows Forms ContextMenuStrip that provides:

  • Support for multiple ToolStripItem types in one menu
  • Rich customization options for appearance
  • Multi-level menu hierarchies
  • Keyboard shortcut display and handling
  • Touch mode support
  • Flexible item state management (checked, disabled, etc.)

Key Features:

  • Mixed item types: MenuItem, TextBox, ComboBox, Separator
  • Multi-level submenu support via DropDownItems
  • Checked/unchecked/indeterminate states
  • Enable/disable items dynamically
  • Auto-close configuration
  • Extensive appearance customization
  • Keyboard shortcut support
  • Tooltip support for menu items
  • Touch-friendly sizing

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and required assemblies
  • Adding ContextMenuStripEx via designer
  • Adding ContextMenuStripEx via code
  • Associating context menu with controls
  • Basic menu item creation
  • Initial configuration

ToolStripItem Types

📄 Read: references/toolstrip-item-types.md

  • MenuItem properties and configuration
  • TextBox items in context menus
  • ComboBox items in context menus
  • Separator for visual grouping
  • Adding each item type via designer and code
  • Item-specific properties and behaviors

Menu Item States

📄 Read: references/menu-item-states.md

  • Checked and unchecked states
  • CheckedState property (Checked, Unchecked, Indeterminate)
  • Enabling and disabling menu items
  • Dynamic state management
  • Visual indicators for states

Multi-level Menus

📄 Read: references/multilevel-menus.md

  • Creating submenu hierarchies
  • Using DropDownItems property
  • Nested menu structures
  • Multi-level navigation patterns
  • Deep menu hierarchies

Menu Behavior

📄 Read: references/menu-behavior.md

  • Auto-close functionality
  • Click event handling
  • Trigger mechanisms
  • Opening and closing behavior
  • Runtime behavior control
  • Event lifecycle

Keyboard Shortcuts and Touch Support

📄 Read: references/keyboard-and-touch.md

  • Keyboard shortcuts configuration
  • ShowShortcutKeys property
  • ShortcutKeys assignment
  • ShortcutKeyDisplayString customization
  • Touch mode support
  • Accessibility features

Appearance Customization

📄 Read: references/appearance-customization.md

  • Background and foreground colors
  • Font customization
  • Size and AutoSize configuration
  • Margins and shadows
  • Tooltip configuration
  • Render modes
  • Visual styling options

Quick Start Example

Basic Context Menu Implementation

Via Designer:

1. Drag ContextMenuStripEx from toolbox to form
   (appears in component tray)
2. Click "Type Here" to add menu items
3. Select item type (MenuItem, TextBox, ComboBox, Separator)
4. Configure item properties in Properties panel
5. Right-click target control → Properties → ContextMenuStrip
6. Select the ContextMenuStripEx instance

Via Code:

using Syncfusion.Windows.Forms.Tools;
using System.Windows.Forms;

// Declarations
private ContextMenuStripEx contextMenuStripEx;
private ToolStripMenuItem menuItemCut;
private ToolStripMenuItem menuItemCopy;
private ToolStripMenuItem menuItemPaste;
private RichTextBox richTextBox1;

// Initialization
private void InitializeContextMenu()
{
    // Create context menu
    this.contextMenuStripEx = new ContextMenuStripEx();

    // Create menu items
    this.menuItemCut = new ToolStripMenuItem();
    this.menuItemCopy = new ToolStripMenuItem();
    this.menuItemPaste = new ToolStripMenuItem();

    // Configure menu items
    this.menuItemCut.Text = "Cut";
    this.menuItemCut.ShortcutKeys = Keys.Control | Keys.X;
    this.menuItemCut.Click += MenuItemCut_Click;

    this.menuItemCopy.Text = "Copy";
    this.menuItemCopy.ShortcutKeys = Keys.Control | Keys.C;
    this.menuItemCopy.Click += MenuItemCopy_Click;

    this.menuItemPaste.Text = "Paste";
    this.menuItemPaste.ShortcutKeys = Keys.Control | Keys.V;
    this.menuItemPaste.Click += MenuItemPaste_Click;

    // Add items to context menu
    this.contextMenuStripEx.Items.AddRange(new ToolStripItem[] {
        this.menuItemCut,
        this.menuItemCopy,
        this.menuItemPaste
    });

    // Associate with control
    this.richTextBox1 = new RichTextBox();
    this.richTextBox1.ContextMenuStrip = this.contextMenuStripEx;
    this.Controls.Add(this.richTextBox1);
}

// Event handlers
private void MenuItemCut_Click(object sender, EventArgs e)
{
    richTextBox1.Cut();
}

private void MenuItemCopy_Click(object sender, EventArgs e)
{
    richTextBox1.Copy();
}

private void MenuItemPaste_Click(object sender, EventArgs e)
{
    richTextBox1.Paste();
}

Common Patterns

Pattern 1: Editing Context Menu (Cut/Copy/Paste)

private void CreateEditContextMenu()
{
    var contextMenu = new ContextMenuStripEx();

    var cutItem = new ToolStripMenuItem("Cut", null, (s, e) => textBox.Cut());
    cutItem.ShortcutKeys = Keys.Control | Keys.X;

    var copyItem = new ToolStripMenuItem("Copy", null, (s, e) => textBox.Copy());
    copyItem.ShortcutKeys = Keys.Control | Keys.C;

    var pasteItem = new ToolStripMenuItem("Paste", null, (s, e) => textBox.Paste());
    pasteItem.ShortcutKeys = Keys.Control | Keys.V;

    contextMenu.Items.AddRange(new ToolStripItem[] {
        cutItem, copyItem, pasteItem
    });

    textBox.ContextMenuStrip = contextMenu;
}

Pattern 2: Multi-level Menu with Submenus

private void CreateMultiLevelMenu()
{
    var contextMenu = new ContextMenuStripEx();

    // Parent menu item with submenus
    var newMenuItem = new ToolStripMenuItem("New");

    // Submenu items
    var newDocItem = new ToolStripMenuItem("New Document");
    var newProjectItem = new ToolStripMenuItem("New Project");
    var newFileItem = new ToolStripMenuItem("New File");

    // Add submenus to parent
    newMenuItem.DropDownItems.AddRange(new ToolStripItem[] {
        newDocItem, newProjectItem, newFileItem
    });

    // Add to context menu
    contextMenu.Items.Add(newMenuItem);

    control.ContextMenuStrip = contextMenu;
}

Pattern 3: Dynamic Menu with Checked States

private void CreateDynamicCheckedMenu()
{
    var contextMenu = new ContextMenuStripEx();

    var boldItem = new ToolStripMenuItem("Bold");
    boldItem.CheckOnClick = true;
    boldItem.Checked = false;
    boldItem.Click += (s, e) => {
        var item = s as ToolStripMenuItem;
        // Apply bold formatting based on checked state
        ApplyBoldFormatting(item.Checked);
    };

    var italicItem = new ToolStripMenuItem("Italic");
    italicItem.CheckOnClick = true;
    italicItem.Checked = false;

    var underlineItem = new ToolStripMenuItem("Underline");
    underlineItem.CheckOnClick = true;
    underlineItem.Checked = false;

    contextMenu.Items.AddRange(new ToolStripItem[] {
        boldItem, italicItem, underlineItem
    });

    richTextBox.ContextMenuStrip = contextMenu;
}

Pattern 4: Mixed Item Types Menu

private void CreateMixedItemMenu()
{
    var contextMenu = new ContextMenuStripEx();

    // Menu item
    var searchItem = new ToolStripMenuItem("Search");

    // TextBox for input
    var searchBox = new ToolStripTextBox();
    searchBox.Text = "Enter search term...";

    // Separator
    var separator = new ToolStripSeparator();

    // ComboBox for options
    var filterCombo = new ToolStripComboBox();
    filterCombo.Items.AddRange(new object[] { "All", "Documents", "Images" });
    filterCombo.SelectedIndex = 0;

    // Add all items
    contextMenu.Items.AddRange(new ToolStripItem[] {
        searchItem, searchBox, separator, filterCombo
    });

    control.ContextMenuStrip = contextMenu;
}

Pattern 5: Dynamically Enable/Disable Items

private void UpdateMenuItemStates()
{
    // Enable/disable based on application state
    menuItemCut.Enabled = textBox.SelectionLength > 0;
    menuItemCopy.Enabled = textBox.SelectionLength > 0;
    menuItemPaste.Enabled = Clipboard.ContainsText();
}

private void ContextMenu_Opening(object sender, CancelEventArgs e)
{
    // Update states before menu opens
    UpdateMenuItemStates();
}

// Subscribe to Opening event
contextMenuStripEx.Opening += ContextMenu_Opening;

Key Properties

ContextMenuStripEx Properties

  • Items: Collection of ToolStripItems in the menu
  • AutoClose: Whether menu closes on user actions
  • BackColor: Background color of the menu
  • Font: Font applied to all menu items
  • Size: Height and width of the menu
  • RenderMode: Painting style (Professional, System, Custom)

ToolStripMenuItem Properties

  • Text: Display text for the menu item
  • Checked: Whether check mark appears
  • CheckedState: State (Checked, Unchecked, Indeterminate)
  • Enabled: Whether item is enabled
  • ShortcutKeys: Keyboard shortcut
  • ShowShortcutKeys: Display shortcut in menu
  • DropDownItems: Submenu items collection
  • ToolTipText: Tooltip when hovering

Event Properties

  • Click: Fires when menu item is clicked
  • CheckedChanged: Fires when checked state changes
  • Opening: Fires before context menu opens
  • Closed: Fires when context menu closes

Common Use Cases

Use Case 1: Text Editor Context Menu

Implement standard editing operations (cut, copy, paste, select all) with keyboard shortcuts displayed.

Reference: getting-started.md, keyboard-and-touch.md

Use Case 2: Application Options Menu

Create a menu with checkable items for toggling features (show toolbar, show status bar, word wrap).

Reference: menu-item-states.md, menu-behavior.md

Use Case 3: File Operations Menu

Build a hierarchical menu for file operations (New → Document/Project/File, Open, Save, Close).

Reference: multilevel-menus.md, toolstrip-item-types.md

Use Case 4: Search and Filter Menu

Combine TextBox for input and ComboBox for filter selection within the context menu.

Reference: toolstrip-item-types.md, appearance-customization.md

Use Case 5: Context-Aware Menu

Enable/disable menu items based on current selection or application state.

Reference: menu-item-states.md, menu-behavior.md

Implementation Workflow

  1. Plan Menu Structure: Identify menu items, hierarchy, and item types needed
  2. Add ContextMenuStripEx: Via designer or code
  3. Create Menu Items: Add ToolStripMenuItems, TextBoxes, ComboBoxes, Separators
  4. Configure Properties: Set text, shortcuts, states, appearance
  5. Build Hierarchy: Add submenus using DropDownItems if needed
  6. Wire Events: Subscribe to Click events for each actionable item
  7. Associate with Control: Set control's ContextMenuStrip property
  8. Test Interaction: Right-click to verify menu appears and functions
  9. Customize Appearance: Apply colors, fonts, sizing as needed
  10. Handle Dynamic States: Update enabled/checked states based on context

Troubleshooting

Menu Not Appearing:

  • Verify ContextMenuStrip property is set on target control
  • Check that menu has at least one item
  • Ensure control allows right-click events

Shortcuts Not Working:

  • Set ShowShortcutKeys = true to display shortcuts
  • Verify ShortcutKeys property is configured correctly
  • Check for keyboard shortcut conflicts with other controls

Items Not Enabled:

  • Check Enabled property of menu items
  • Verify event handlers are updating states correctly
  • Use Opening event to update states before menu displays

Submenus Not Showing:

  • Ensure parent item has DropDownItems populated
  • Verify submenu items are properly initialized
  • Check that parent item is not disabled

For detailed information on specific features, navigate to the appropriate reference file listed in the Documentation and Navigation Guide section.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.71%
按下载量换算98

Claude

29.5%
按下载量换算81

Cursor

19.16%
按下载量换算53

Gemini CLI

8.45%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills