Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

syncfusion-winforms-spell-checkerSynfusion Winforms 拼写检查器

Agent Skill

syncfusion-winforms-spell-checker 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

689

周安装

29

GitHub Stars

公开资料未说明

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

Syncfusion WinForms 拼写检查器控件,集成词典与规则引擎辅助文本纠错。

  • 适用于富文本编辑器、邮件撰写、表单填写等需要语言质量保障的应用。
  • 支持实时检查、建议替换、自定义词典导入及多语言切换。
  • 使用前请确认 Syncfusion 许可证包含此功能,并检查本地词典文件的存储路径权限。
  • 注意网络依赖情况,若使用在线词典需提供备用离线方案以防连接失败。

SKILL.md

Implementing Syncfusion Windows Forms SpellChecker

The SpellCheckerAdv control provides Microsoft Office-style spell checking capabilities for Windows Forms text controls. This skill guides you through installation, control attachment, dictionary configuration, context menu integration, and customization options.

When to Use This Skill

Use this skill when you need to:

  • Add spell checking to RichTextBox or TextBox controls
  • Configure dictionary sources (built-in English or custom dictionaries)
  • Set up context menu-driven spell checking
  • Customize ignore rules for special content (emails, URLs, numbers)
  • Retrieve spelling suggestions and alternatives
  • Support multiple languages via different dictionary formats

Documentation Navigation

Getting Started

📄 Read: references/getting-started.md

  • Installation and assembly references
  • Adding control via designer or code
  • Configuring SpellCheckerAdv with text controls
  • Invoking spell check operations
  • Basic implementation patterns

Dictionary Configuration

📄 Read: references/dictionary-setup.md

  • Setting up default English dictionary
  • Adding Hunspell dictionaries for multiple languages
  • Adding Ispell dictionaries
  • Adding OpenOffice dictionaries
  • Switching cultures at runtime
  • Custom dictionary support

Context Menu Integration

📄 Read: references/context-menu-integration.md

  • Implementing ISpellCheckerAdvEditorTools interface
  • Creating TextBoxSpellEditor wrapper class
  • Setting up runtime context menus
  • User-driven spell checking workflow
  • Adding to dictionary from context menu

Customization & Suggestions

📄 Read: references/customization-suggestions.md

  • Ignore options (emails, URLs, mixed case, special symbols)
  • Retrieving suggestion lists
  • Phonetic word alternatives
  • Anagram suggestions
  • Custom word management

Quick Start Example

Basic Spell Check Setup:

using Syncfusion.Windows.Forms.Tools;

// 1. Create SpellCheckerAdv control
SpellCheckerAdv spellCheckerAdv = new SpellCheckerAdv();

// 2. Set dictionary path
spellCheckerAdv.DictionaryPath = "Syncfusion_en_us.dic";

// 3. Attach to RichTextBox and trigger spell check
RichTextBox richTextBox = new RichTextBox();
spellCheckerAdv.SpellCheck(new SpellCheckerAdvEditorWrapper(richTextBox));

Context Menu Spell Checking:

// Implement ISpellCheckerAdvEditorTools
class TextBoxSpellEditor : ISpellCheckerAdvEditorTools
{
    private TextBoxBase textBox;

    public TextBoxSpellEditor(Control control)
    {
        Control = control;
    }

    public Control Control
    {
        get { return textBox; }
        set { textBox = value as TextBoxBase; }
    }

    public string Text
    {
        get { return textBox.Text; }
        set { textBox.Text = value; }
    }

    public string CurrentWord { get; set; }

    public void SelectText(int start, int length)
    {
        textBox.Select(start, length);
    }
}

// Enable context menu spell checking
TextBoxSpellEditor editor = new TextBoxSpellEditor(richTextBox);
spellCheckerAdv.PerformSpellCheckUsingContextMenu(editor);

Common Implementation Patterns

Pattern 1: Dialog-Based Spell Checking

User clicks a "Spell Check" button → SpellCheckerAdv dialog opens → User reviews and corrects misspelled words → Dialog closes.

private void buttonSpellCheck_Click(object sender, EventArgs e)
{
    spellCheckerAdv.SpellCheck(new SpellCheckerAdvEditorWrapper(richTextBox));
}

Pattern 2: Real-Time Context Menu

User right-clicks misspelled word → Context menu appears with suggestions → User selects correction or adds to dictionary.

TextBoxSpellEditor editor = new TextBoxSpellEditor(richTextBox);
spellCheckerAdv.PerformSpellCheckUsingContextMenu(editor);

Pattern 3: Multi-Language Support

Configure multiple dictionary cultures and switch at runtime based on user preference or content language.

SpellCheckerAdv spellChecker = new SpellCheckerAdv();
spellChecker.Dictionaries = new DictionaryCollection();

// Add English dictionary
spellChecker.Dictionaries.Add(new HunspellDictionary()
{
    Culture = new CultureInfo("en-US"),
    DictionaryPath = @"en-US.dic",
    GrammarPath = @"en-US.aff"
});

// Add French dictionary
spellChecker.Dictionaries.Add(new HunspellDictionary()
{
    Culture = new CultureInfo("fr-FR"),
    DictionaryPath = @"fr-FR.dic",
    GrammarPath = @"fr-FR.aff"
});

// Switch to French at runtime
spellChecker.Culture = new CultureInfo("fr-FR");

Key Props & Methods

ElementPurposeWhen to Use
DictionaryPathSet built-in dictionary locationSimple English spell checking
DictionariesAdd custom dictionaries (Hunspell, Ispell, OpenOffice)Multi-language support
CultureSet active spell-check languageLanguage switching
SpellCheck()Trigger spell-check dialogUser-initiated spell checking
PerformSpellCheckUsingContextMenu()Enable context menu suggestionsReal-time spell checking
GetSuggestions()Retrieve correction suggestionsProgrammatic spell checking
IgnoreEmailAddress, IgnoreUrl, etc.Skip special content typesCustomized spell checking

Common Use Cases

  1. Email Client: Right-click spell checking with custom dictionaries
  2. Document Editor: Multi-language spell checking with context menu
  3. Form Validator: Check user input before submission
  4. Content Management: Ignore URLs and email addresses in content
  5. Multilingual App: Switch spell-check language based on UI culture

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.22%
按下载量换算82

Claude

32.04%
按下载量换算77

Cursor

16.61%
按下载量换算40

Gemini CLI

8.64%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills