Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

syncfusion-wpf-smart-text-editorsyncfusion wpf 智能文本编辑器

Agent Skill

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

总安装

1,077

周安装

44

GitHub Stars

2

下载量

345
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/wpf-ui-components-skills --skill syncfusion-wpf-smart-text-editor

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行信息整理。
  • 可结合来源仓库和 README 进一步核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 注意避免在不具备相应权限时执行写回或批量操作。syncfusion-wpf-smart-text-editor 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion WPF Smart Text Editor

When to Use This Skill

Use this skill when users need to:

  • Implement AI-powered text input with predictive suggestions and context-aware completions
  • Add intelligent autocomplete to multiline text editors in WPF applications
  • Integrate AI services (Azure OpenAI, OpenAI, Ollama, or custom providers) for text generation
  • Create smart text fields for customer support, email composition, or content creation
  • Build responsive text editors with inline or popup suggestion display modes
  • Customize suggestion behavior with user roles, custom phrases, and styling options
  • Handle text change events and implement command patterns for text editors
  • Support offline suggestions with custom phrase libraries when AI is unavailable

The Smart Text Editor (SfSmartTextEditor) is ideal for scenarios requiring intelligent typing assistance, branded response templates, and AI-enhanced user input.

Component Overview

The Syncfusion WPF Smart Text Editor is a multiline input control that uses predictive suggestions to speed up typing. It integrates with AI inference services for context-aware completions and provides inline or popup suggestion display modes. Key capabilities include:

Core Features:

  • AI-powered suggestions via IChatInferenceService
  • Inline and popup suggestion display modes
  • Custom phrase library for offline suggestions
  • Keyboard integration (Tab, Right Arrow to accept)
  • Gesture support (tap/click for popup suggestions)
  • Maximum length validation
  • Placeholder text with customizable styling
  • Full UI customization (fonts, colors, sizes)
  • Command support (TextChangedCommand)

Supported AI Providers:

  • Azure OpenAI
  • OpenAI
  • Ollama (self-hosted models)
  • Custom services via IChatInferenceService interface
  • Claude AI (Anthropic)
  • DeepSeek AI
  • Google Gemini AI
  • Groq AI

Documentation and Navigation Guide

Getting Started and Installation

📄 Read: references/getting-started.md

  • Installing Syncfusion.SfSmartComponents.WPF NuGet package
  • Adding control via Designer, XAML, or C#
  • Configuring UserRole and UserPhrases for suggestions
  • Registering AI services in App.xaml.cs
  • Running the application and verifying AI features

When to read: Starting a new Smart Text Editor implementation, setting up the development environment, or adding the control to an existing WPF project.

Suggestion Display Modes

📄 Read: references/suggestion-display-modes.md

  • Inline mode: Suggestions rendered in place after caret
  • Popup mode: Compact hint overlay near caret
  • Keyboard shortcuts (Tab, Right Arrow)
  • Gesture support (tap/click)
  • Choosing between Inline and Popup modes

When to read: User needs to configure how suggestions appear, switch between display modes, or optimize for desktop vs touch devices.

Customization and Styling

📄 Read: references/customization.md

  • Text style customization (FontSize, Foreground, fonts)
  • Placeholder text and color customization
  • Suggestion text color (SuggestionInlineStyle)
  • Suggestion popup background (SuggestionPopupStyle)
  • Maximum input length (MaxLength property)
  • Complete styling examples

When to read: Customizing appearance to match application themes, changing text styles, configuring placeholders, or setting character limits.

Commands

📄 Read: references/commands.md

  • TextChangedCommand overview and implementation
  • Command binding in XAML
  • ViewModel pattern for command handling
  • Event handling patterns
  • Use cases for tracking text changes

When to read: Implementing text change notifications, MVVM command patterns, or custom event handling logic.

AI Service Configuration (Built-in Providers)

📄 Read: references/ai-service-configuration.md

  • Registering chat clients in App.xaml.cs
  • Azure OpenAI configuration (deployment, API key, endpoint)
  • OpenAI configuration (API key, model selection)
  • Ollama self-hosted models (installation, local setup)
  • Required NuGet packages for each provider
  • Troubleshooting built-in AI providers

When to read: Configuring Azure OpenAI, OpenAI, or Ollama for AI-powered suggestions. Use this for official/built-in AI provider setup.

Common Patterns

Pattern 1: Support Ticket Response Editor

Scenario: Customer support application with branded responses.

<syncfusion:SfSmartTextEditor
    Placeholder="Write your response..."
    UserRole="Technical support engineer helping customers with product issues"
    MaxLength="2000"
    SuggestionDisplayMode="Inline">
    <syncfusion:SfSmartTextEditor.UserPhrases>
        <sys:String>Thanks for contacting Syncfusion support.</sys:String>
        <sys:String>Could you please share a reproducible sample?</sys:String>
        <sys:String>We've logged this as a bug and will update you soon.</sys:String>
        <sys:String>Let us know if you need further assistance.</sys:String>
    </syncfusion:SfSmartTextEditor.UserPhrases>
</syncfusion:SfSmartTextEditor>

Pattern 2: Email Composition with Custom Styling

Scenario: Email client with custom theme and popup suggestions.

<syncfusion:SfSmartTextEditor
    Placeholder="Compose your email..."
    UserRole="Professional email author"
    SuggestionDisplayMode="Popup"
    MaxLength="5000">
    <syncfusion:SfSmartTextEditor.Style>
        <Style TargetType="{x:Type syncfusion:SfSmartTextEditor}">
            <Setter Property="FontSize" Value="14"/>
            <Setter Property="Foreground" Value="#333333"/>
            <Setter Property="FontFamily" Value="Segoe UI"/>
        </Style>
    </syncfusion:SfSmartTextEditor.Style>
    <syncfusion:SfSmartTextEditor.SuggestionPopupStyle>
        <Style TargetType="syncfusion:SuggestionPopup">
            <Setter Property="Background" Value="#0078D4"/>
            <Setter Property="Foreground" Value="White"/>
        </Style>
    </syncfusion:SfSmartTextEditor.SuggestionPopupStyle>
</syncfusion:SfSmartTextEditor>

Pattern 3: Text Editor with Change Tracking

Scenario: Track text changes for auto-save or validation.

<syncfusion:SfSmartTextEditor
    x:Name="smartTextEditor"
    TextChangedCommand="{Binding TextChangedCommand}"
    Placeholder="Start typing..."/>
public class EditorViewModel : INotifyPropertyChanged
{
    public ICommand TextChangedCommand { get; }

    public EditorViewModel()
    {
        TextChangedCommand = new RelayCommand(OnTextChanged);
    }

    private void OnTextChanged()
    {
        // Auto-save, validation, or tracking logic
        Debug.WriteLine("Text changed - triggering auto-save");
    }
}

Pattern 4: Offline-First with Custom Phrases

Scenario: App that works without AI connectivity.

<syncfusion:SfSmartTextEditor
    Placeholder="Type your message..."
    UserRole="Sales representative responding to leads">
    <syncfusion:SfSmartTextEditor.UserPhrases>
        <sys:String>Thank you for your interest in our products.</sys:String>
        <sys:String>I'd be happy to schedule a demo.</sys:String>
        <sys:String>Our pricing starts at $99 per month.</sys:String>
        <sys:String>Let me connect you with our solutions team.</sys:String>
        <sys:String>Feel free to reach out with any questions.</sys:String>
    </syncfusion:SfSmartTextEditor.UserPhrases>
</syncfusion:SfSmartTextEditor>

Note: If no AI service is configured, the editor automatically falls back to UserPhrases for suggestions.

Key Properties

PropertyTypeDescriptionDefault
TextstringGets or sets the text content""
PlaceholderstringPlaceholder text when editor is emptynull
UserRolestringDescribes who is typing and intent (shapes AI suggestions)null
UserPhrasesList<string>Custom phrase library for offline suggestionsnull
SuggestionDisplayModeSuggestionDisplayModeDisplay mode: Inline or PopupInline
MaxLengthintMaximum character limit0 (unlimited)
TextChangedCommandICommandCommand triggered when text changesnull
StyleStyleText style (FontSize, Foreground, etc.)Default
PlaceholderStyleStylePlaceholder stylingDefault
SuggestionInlineStyleStyleInline suggestion text styleDefault
SuggestionPopupStyleStylePopup suggestion background styleDefault

Common Use Cases

When User Needs Inline Suggestions (Desktop)

When User Needs Popup Suggestions (Touch Devices)

When User Needs Azure OpenAI Integration

  • Action: Configure AzureOpenAIClient in App.xaml.cs
  • Why: Enterprise-grade AI with Azure security and compliance
  • Reference: ai-service-configuration.md

When User Needs Character Limit

  • Action: Set MaxLength property
  • Why: Enforce input validation and prevent excessive text
  • Reference: customization.md

When User Needs Text Change Notifications

  • Action: Bind TextChangedCommand to ViewModel
  • Why: Track changes for auto-save, validation, or analytics
  • Reference: commands.md

When User Needs Offline Suggestions

  • Action: Configure UserPhrases without AI service
  • Why: Provide suggestions when AI is unavailable or disabled
  • Reference: getting-started.md

When User Needs Custom Theme

  • Action: Apply Style, PlaceholderStyle, SuggestionInlineStyle
  • Why: Match application branding and design system
  • Reference: customization.md

Next Steps:

  1. For initial setup and installation → Read getting-started.md
  2. For AI provider configuration → Read ai-service-configuration.md
  3. For appearance customization → Read customization.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.67%
按下载量换算123

Claude

32.43%
按下载量换算112

Cursor

17.64%
按下载量换算61

Gemini CLI

10.51%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills