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

syncfusion-winui-ai-assistview同步融合 winui ai Assistview

Agent Skill

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

总安装

563

周安装

23

GitHub Stars

公开资料未说明

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/winui-ui-components-skills --skill syncfusion-winui-ai-assistview

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,避免触发联网或文件读写操作。
  • syncfusion-winui-ai-assistview 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing WinUI AI AssistView

When to Use This Skill

Use this skill when the user needs to:

  • Create an AI chat interface or conversational UI
  • Implement an AI assistant or chatbot
  • Integrate with AI services (OpenAI, Azure AI, etc.)
  • Display AI-generated responses with formatting
  • Show typing indicators during AI processing
  • Provide AI-driven suggestions for quick responses
  • Add custom toolbars for chat actions (copy, regenerate, like/dislike)
  • Allow users to stop long-running AI responses
  • Build customer support bots or help systems
  • Create intelligent conversational applications

Always apply this skill when the user mentions: AI chat, AI assistant, chatbot, conversational UI, AI responses, chat interface, AI integration, typing indicator, AI suggestions, or AI-powered conversations in WinUI applications.

Component Overview

SfAIAssistView is a Syncfusion WinUI control that provides a comprehensive AI chat interface for building intelligent and responsive applications with AI services. It offers a user-friendly conversational UI with built-in support for suggestions, typing indicators, response toolbars, and customizable appearance.

Namespace: Syncfusion.UI.Xaml.Chat NuGet Package: Syncfusion.Chat.WinUI Platform: WinUI 3 Desktop (.NET 5+, Windows App SDK 1.0+)

Key Advantage: Provides a complete AI chat experience out-of-the-box with built-in toolbars, suggestions, typing indicators, and stop responding features—no need to build a chat UI from scratch.

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup (Syncfusion.Chat.WinUI)
  • Namespace imports (Syncfusion.UI.Xaml.Chat)
  • Basic SfAIAssistView initialization
  • CurrentUser and Messages properties
  • Creating ViewModel with TextMessage and Author classes
  • First complete AI chat example
  • License registration

AI Suggestions

📄 Read: references/suggestions.md

  • Suggestions property for AI-driven suggestions
  • Displaying quick response options
  • Bottom-right corner positioning
  • Dynamic suggestion updates
  • Handling suggestion selection
  • Use cases for expediting conversation flow

Response Toolbar

📄 Read: references/response-toolbar.md

  • Built-in toolbar items (Copy, Regenerate, Like, Dislike)
  • ResponseToolbarItem class and properties
  • Custom toolbar items with ItemTemplate
  • IsResponseToolbarVisible property
  • ResponseToolbarItemClicked event
  • Customizing toolbar appearance
  • Adding custom actions to responses

Input Toolbar

📄 Read: references/input-toolbar.md

  • InputToolbarItem class for custom input actions
  • Adding toolbar items to text input area
  • InputToolbarPosition (Left, Right)
  • IsInputToolbarVisible property
  • InputToolbarItemClicked event
  • InputToolbarHeaderTemplate for file uploads
  • Custom input area actions

Typing Indicator and Stop Responding

📄 Read: references/typing-and-stop-responding.md

  • TypingIndicator property for AI processing feedback
  • ShowTypingIndicator boolean property
  • Real-time feedback during AI response generation
  • EnableStopResponding property
  • StopResponding event and command
  • StopRespondingTemplate customization
  • Canceling ongoing AI responses

Theming and Events

📄 Read: references/theming-and-events.md

  • RequestedTheme property (Dark, Light themes)
  • Theme support in App.xaml
  • PromptRequest event
  • InputMessage and Handled properties
  • Validating user input before processing
  • Custom actions on prompt submission
  • Theme customization

Quick Start Example

<Page
    xmlns:syncfusion="using:Syncfusion.UI.Xaml.Chat">
    <Grid>
        <syncfusion:SfAIAssistView
            x:Name="aiAssistView"
            CurrentUser="{Binding CurrentUser}"
            Messages="{Binding Chats}"
            Suggestions="{Binding Suggestions}"
            ShowTypingIndicator="{Binding IsProcessing}"
            TypingIndicator="{Binding TypingIndicator}"/>
    </Grid>
</Page>
using Syncfusion.UI.Xaml.Chat;
using System.Collections.ObjectModel;

public class ViewModel : INotifyPropertyChanged
{
    private ObservableCollection<object> chats;
    private Author currentUser;
    private IEnumerable<string> suggestions;
    private TypingIndicator typingIndicator;
    private bool isProcessing;

    public ViewModel()
    {
        this.CurrentUser = new Author { Name = "User" };
        this.Chats = new ObservableCollection<object>();
        this.TypingIndicator = new TypingIndicator { Author = new Author { Name = "AI" } };
        this.Suggestions = new ObservableCollection<string>();
        InitializeChat();
    }

    private async void InitializeChat()
    {
        // User asks a question
        this.Chats.Add(new TextMessage
        {
            Author = CurrentUser,
            Text = "What is WinUI?"
        });

        // Show typing indicator
        IsProcessing = true;
        await Task.Delay(1000);

        // AI responds
        IsProcessing = false;
        this.Chats.Add(new TextMessage
        {
            Author = new Author { Name = "AI" },
            Text = "WinUI is a user interface layer that contains modern controls and styles for building Windows apps."
        });

        // Update suggestions
        Suggestions = new ObservableCollection<string>
        {
            "What is the future of WinUI?",
            "What is XAML?",
            "What is the difference between WinUI 2 and WinUI 3?"
        };
    }

    public ObservableCollection<object> Chats
    {
        get => chats;
        set { chats = value; RaisePropertyChanged(nameof(Chats)); }
    }

    public Author CurrentUser
    {
        get => currentUser;
        set { currentUser = value; RaisePropertyChanged(nameof(CurrentUser)); }
    }

    public IEnumerable<string> Suggestions
    {
        get => suggestions;
        set { suggestions = value; RaisePropertyChanged(nameof(Suggestions)); }
    }

    public TypingIndicator TypingIndicator
    {
        get => typingIndicator;
        set { typingIndicator = value; RaisePropertyChanged(nameof(TypingIndicator)); }
    }

    public bool IsProcessing
    {
        get => isProcessing;
        set { isProcessing = value; RaisePropertyChanged(nameof(IsProcessing)); }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    private void RaisePropertyChanged(string propertyName) =>
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}

Common Patterns

1. Basic AI Chat with Messages

<syncfusion:SfAIAssistView
    CurrentUser="{Binding CurrentUser}"
    Messages="{Binding Chats}"/>
public class ViewModel
{
    public Author CurrentUser { get; set; } = new Author { Name = "John" };
    public ObservableCollection<object> Chats { get; set; } = new();

    public ViewModel()
    {
        Chats.Add(new TextMessage { Author = CurrentUser, Text = "Hello!" });
        Chats.Add(new TextMessage { Author = new Author { Name = "Bot" }, Text = "Hi! How can I help you?" });
    }
}

When to use: Simple AI chat without suggestions or typing indicators.

2. AI Chat with Typing Indicator

<syncfusion:SfAIAssistView
    CurrentUser="{Binding CurrentUser}"
    Messages="{Binding Chats}"
    ShowTypingIndicator="{Binding IsAIProcessing}"
    TypingIndicator="{Binding TypingIndicator}"/>
private async void SendMessageToAI(string userMessage)
{
    Chats.Add(new TextMessage { Author = CurrentUser, Text = userMessage });

    // Show typing indicator
    IsAIProcessing = true;

    // Call AI service
    var aiResponse = await CallAIService(userMessage);

    // Hide typing indicator and show response
    IsAIProcessing = false;
    Chats.Add(new TextMessage { Author = new Author { Name = "AI" }, Text = aiResponse });
}

When to use: Show real-time feedback while AI generates responses.

3. AI Suggestions for Quick Responses

<syncfusion:SfAIAssistView
    CurrentUser="{Binding CurrentUser}"
    Messages="{Binding Chats}"
    Suggestions="{Binding CurrentSuggestions}"/>
private void UpdateSuggestions(string lastAIResponse)
{
    // Generate contextual suggestions based on AI response
    CurrentSuggestions = new ObservableCollection<string>
    {
        "Tell me more",
        "Show me an example",
        "What are the alternatives?"
    };
}

When to use: Expedite conversation flow with contextual quick responses.

4. Custom Response Toolbar with Actions

<syncfusion:SfAIAssistView
    CurrentUser="{Binding CurrentUser}"
    Messages="{Binding Chats}"
    IsResponseToolbarVisible="True"
    ResponseToolbarItemClicked="ResponseToolbar_ItemClicked"/>
private void ResponseToolbar_ItemClicked(object sender, ResponseToolbarItemClickedEventArgs e)
{
    switch (e.Item.ItemType)
    {
        case ResponseToolbarItemType.Copy:
            CopyToClipboard(e.Message.Text);
            break;
        case ResponseToolbarItemType.Regenerate:
            RegenerateAIResponse(e.Message);
            break;
        case ResponseToolbarItemType.Like:
            SendFeedback("like", e.Message);
            break;
        case ResponseToolbarItemType.Dislike:
            SendFeedback("dislike", e.Message);
            break;
    }
}

When to use: Allow users to interact with AI responses (copy, regenerate, rate).

5. Custom Input Toolbar with File Upload

<syncfusion:SfAIAssistView IsInputToolbarVisible="True">
    <syncfusion:SfAIAssistView.InputToolbarItems>
        <syncfusion:InputToolbarItem Tooltip="Attach file">
            <syncfusion:InputToolbarItem.ItemTemplate>
                <DataTemplate><Button Click="AttachFile_Click"><SymbolIcon Symbol="Attach"/></Button></DataTemplate>
            </syncfusion:InputToolbarItem.ItemTemplate>
        </syncfusion:InputToolbarItem>
    </syncfusion:SfAIAssistView.InputToolbarItems>
</syncfusion:SfAIAssistView>

When to use: Allow users to attach files to AI prompts. See input-toolbar.md for full implementation.

6. Stop Responding Feature for Long AI Responses

<syncfusion:SfAIAssistView
    CurrentUser="{Binding CurrentUser}"
    Messages="{Binding Chats}"
    EnableStopResponding="True"
    StopResponding="StopResponding_Event"/>
private CancellationTokenSource aiCancellationToken;

private async void SendToAI(string prompt)
{
    aiCancellationToken = new CancellationTokenSource();

    try
    {
        var response = await CallAIServiceAsync(prompt, aiCancellationToken.Token);
        Chats.Add(new TextMessage { Author = new Author { Name = "AI" }, Text = response });
    }
    catch (OperationCanceledException)
    {
        Chats.Add(new TextMessage { Author = new Author { Name = "AI" }, Text = "Response canceled." });
    }
}

private void StopResponding_Event(object sender, EventArgs e)
{
    aiCancellationToken?.Cancel();
}

When to use: Allow users to cancel long-running AI responses.

7. PromptRequest Event for Input Validation

private void PromptRequest_Event(object sender, PromptRequestEventArgs e)
{
    if (string.IsNullOrWhiteSpace(e.InputMessage.Text))
    {
        e.Handled = true;
        ShowError("Please enter a message.");
    }
}

When to use: Validate or preprocess user input before AI processing.

8. OpenAI Integration Pattern

private async Task<string> CallOpenAI(string prompt)
{
    var client = new OpenAIClient(apiKey);
    var response = await client.CompleteChatAsync("gpt-4", new ChatCompletionOptions
    {
        Messages = { new SystemChatMessage("You are a helpful assistant."), new UserChatMessage(prompt) }
    });
    return response.Value.Content[0].Text;
}

When to use: Integrate with OpenAI GPT models. See theming-and-events.md for theme configuration.

Key Properties

PropertyTypeDefaultDescription
MessagesObservableCollection<object>nullCollection of chat messages (TextMessage objects).
CurrentUserAuthornullCurrent user author information. Required to distinguish user messages from AI responses.
SuggestionsIEnumerable<string>nullAI-driven suggestions displayed in bottom-right corner for quick responses.
ShowTypingIndicatorboolfalseShows/hides typing indicator during AI processing.
TypingIndicatorTypingIndicatornullTyping indicator configuration (author, text).
IsResponseToolbarVisiblebooltrueShows/hides response toolbar (Copy, Regenerate, Like, Dislike).
ResponseToolbarItemsObservableCollection<ResponseToolbarItem>Built-in itemsCustom toolbar items for response actions.
IsInputToolbarVisibleboolfalseShows/hides input toolbar in text input area.
InputToolbarItemsObservableCollection<InputToolbarItem>nullCustom toolbar items for input area (e.g., attach file).
InputToolbarPositionToolbarPositionRightPosition of input toolbar (Left or Right).
InputToolbarHeaderTemplateDataTemplatenullCustom template for input area header (e.g., file upload info).
EnableStopRespondingboolfalseEnables stop responding button to cancel ongoing AI responses.
StopRespondingTemplateDataTemplatenullCustom template for stop responding button.
StopRespondingCommandICommandnullCommand executed when stop responding button is clicked.
RequestedThemeElementThemeDefaultTheme for the control (Light, Dark, or Default). Set in App.xaml.

Key Events

EventDescription
PromptRequestFired when user submits a prompt. Provides InputMessage and Handled properties.
ResponseToolbarItemClickedFired when response toolbar item is clicked. Provides item details.
InputToolbarItemClickedFired when input toolbar item is clicked. Provides item details.
StopRespondingFired when stop responding button is clicked. Use to cancel AI operations.

Common Use Cases

AI Chatbots and Assistants

  • Customer support chatbots
  • Virtual assistants
  • Help desk automation
  • FAQ bots
  • Product recommendation assistants

Best Approach: Use Messages for conversation history, Suggestions for common queries, typing indicator for feedback.

AI-Powered Development Tools

  • Code generation assistants
  • Documentation generators
  • Code review bots
  • Debugging assistants

Best Approach: Enable response toolbar for copying code, regenerating responses. Use input toolbar for file/code uploads.

Educational AI Tutors

  • Interactive learning assistants
  • Homework help bots
  • Language learning tutors
  • Subject-specific tutors

Best Approach: Use suggestions for learning paths, response toolbar for rating answers, typing indicator for engagement.

Content Generation

  • Writing assistants
  • Email drafters
  • Social media content creators
  • Marketing copy generators

Best Approach: Enable copy/regenerate in response toolbar, use suggestions for content variations.

Data Analysis and Insights

  • Business intelligence assistants
  • Data query interfaces
  • Report generation bots
  • Analytics helpers

Best Approach: Use input toolbar for data uploads, stop responding for long queries, response toolbar for export actions.

Implementation Tips

  1. Message Management: Use ObservableCollection for Messages to automatically update UI when adding/removing messages.
  2. Typing Indicator: Show during async AI calls, hide when response arrives. Bind to ViewModel boolean property.
  3. Suggestions: Update dynamically based on conversation context. Clear after user selects or after few exchanges.
  4. Error Handling: Use PromptRequest event to validate input. Catch AI service errors gracefully.
  5. Performance: For long conversations, consider implementing message pagination or limiting visible message count.
  6. AI Service Integration: Use async/await for AI service calls. Implement cancellation tokens with stop responding feature.
  7. Response Toolbar: Default items (Copy, Regenerate, Like, Dislike) work automatically. Handle ResponseToolbarItemClicked for custom logic.
  8. Input Toolbar: Use for frequently needed actions like file upload, voice input, or emoji picker.
  9. Theme Support: Set RequestedTheme in App.xaml for app-wide theme. Control auto-adapts to light/dark mode.
  10. Accessibility: Set Author.Name for screen readers. Ensure sufficient contrast in custom templates.

Related Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.2%
按下载量换算62

Claude

28.66%
按下载量换算52

Cursor

18.92%
按下载量换算34

Gemini CLI

9.61%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills