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

syncfusion-winui-avatar-viewsynfusion winui 头像视图

Agent Skill

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

总安装

574

周安装

23

GitHub Stars

公开资料未说明

下载量

186
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Implementing WinUI AvatarView

When to Use This Skill

Use this skill when the user needs to:

  • Display user profile pictures or avatars
  • Show user initials in circular or square badges
  • Create contact lists with avatar images
  • Implement chat interfaces with user avatars
  • Display team members with profile pictures
  • Show group avatars (up to 3 users)
  • Use pre-defined avatar character images
  • Create visual user representations in any UI

Always apply this skill when the user mentions: avatar, profile picture, user image, initials, contact image, user icon, profile badge, or group avatars in WinUI applications.

Component Overview

SfAvatarView is a Syncfusion WinUI control that provides a graphical representation of user images with support for custom images, user initials, pre-defined avatar characters, and group views. It offers flexible shapes, sizes, and extensive customization.

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

Key Advantage: Provides a complete avatar solution with built-in support for initials generation, 25 pre-defined avatar characters, and group views without needing custom implementations.

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet package setup
  • Namespace imports and basic initialization
  • Default avatar behavior (Avatar1, Circle, Small)
  • ImageSource property for custom images
  • License registration requirements
  • First complete example

Content Types

📄 Read: references/content-types.md

  • 5 content types (Default, Initials, CustomImage, AvatarCharacter, GroupView)
  • Initials generation (SingleCharacter, DoubleCharacter)
  • 25 pre-defined avatar characters
  • Custom image support via ImageSource
  • Group view for multiple users (up to 3)
  • GroupSource and member path configuration
  • Choosing the right content type

Visual Styles and Shapes

📄 Read: references/visual-styles.md

  • AvatarShape property (Circle, Square, Custom)
  • AvatarSize property (ExtraSmall, Small, Medium, Large, ExtraLarge)
  • Size comparisons and guidelines
  • Custom shapes with CornerRadius
  • Shape selection based on design requirements

Customization Options

📄 Read: references/customization.md

  • Border customization (BorderBrush, BorderThickness)
  • Background property (solid colors)
  • Gradient backgrounds (LinearGradientBrush, RadialGradientBrush)
  • Font customization (FontFamily, Foreground, FontSize)
  • Theme integration
  • Combining customizations

Quick Start Example

<Page
    xmlns:syncfusion="using:Syncfusion.UI.Xaml.Core">
    <Grid>
        <!-- Initials avatar -->
        <syncfusion:SfAvatarView
            x:Name="userAvatar"
            ContentType="Initials"
            AvatarName="John Doe"
            InitialsType="DoubleCharacter"
            AvatarSize="Large"
            Background="CornflowerBlue"
            Foreground="White"
            AvatarShape="Circle"/>
    </Grid>
</Page>
using Syncfusion.UI.Xaml.Core;
using Microsoft.UI;

// Create avatar with initials
SfAvatarView avatarView = new SfAvatarView
{
    ContentType = AvatarContentType.Initials,
    AvatarName = "John Doe",
    InitialsType = AvatarInitialsType.DoubleCharacter,
    AvatarSize = AvatarSize.Large,
    Background = new SolidColorBrush(Colors.CornflowerBlue),
    Foreground = new SolidColorBrush(Colors.White),
    AvatarShape = AvatarShape.Circle
};

// Add to UI
this.Content = avatarView;

Common Patterns

1. User Profile Avatar with Initials

<syncfusion:SfAvatarView
    ContentType="Initials"
    AvatarName="Sarah Johnson"
    InitialsType="DoubleCharacter"
    AvatarSize="ExtraLarge"
    AvatarShape="Circle"
    Background="#FF6A5ACD"
    Foreground="White"/>

When to use: User profiles, account pages, settings screens.

2. Contact List with Custom Images

<ListView ItemsSource="{x:Bind Contacts}">
    <ListView.ItemTemplate>
        <DataTemplate x:DataType="local:Contact">
            <StackPanel Orientation="Horizontal" Spacing="10">
                <syncfusion:SfAvatarView
                    ContentType="CustomImage"
                    ImageSource="{x:Bind ProfileImagePath}"
                    AvatarSize="Medium"
                    AvatarShape="Circle"/>
                <TextBlock Text="{x:Bind Name}" VerticalAlignment="Center"/>
            </StackPanel>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

When to use: Contact lists, chat contacts, team directories.

3. Chat Message with Avatar Character

<StackPanel Orientation="Horizontal" Spacing="10">
    <syncfusion:SfAvatarView
        ContentType="AvatarCharacter"
        AvatarCharacter="Avatar15"
        AvatarSize="Small"
        AvatarShape="Circle"/>
    <Border Background="LightGray"
            CornerRadius="8"
            Padding="10">
        <TextBlock Text="Hello! How are you?"/>
    </Border>
</StackPanel>

When to use: Chat interfaces, comment sections, messaging apps.

4. Group Avatar (Multiple Users)

<syncfusion:SfAvatarView
    ContentType="Group"
    GroupSource="{x:Bind TeamMembers}"
    ImageSourceMemberPath="ProfileImage"
    InitialsMemberPath="Name"
    BackgroundColorMemberPath="BackgroundColor"
    InitialsColorMemberPath="InitialsColor"
    AvatarSize="Large"/>
public class TeamMember
{
    public string Name { get; set; }
    public string ProfileImage { get; set; }
    public Color BackgroundColor { get; set; }
    public Color InitialsColor { get; set; }
}

public ObservableCollection<TeamMember> TeamMembers { get; set; } = new()
{
    new TeamMember { ProfileImage = "user1.png" },
    new TeamMember { Name = "Alex", BackgroundColor = Colors.LightBlue, InitialsColor = Colors.Navy },
    new TeamMember { ProfileImage = "user3.png" }
};

When to use: Team displays, group chats, collaborative features showing multiple participants.

5. Dynamic Avatar Based on Data Availability

private void ConfigureAvatar(User user)
{
    if (!string.IsNullOrEmpty(user.ProfileImageUrl))
    {
        // Use custom image if available
        avatarView.ContentType = AvatarContentType.CustomImage;
        avatarView.ImageSource = new BitmapImage(new Uri(user.ProfileImageUrl));
    }
    else if (!string.IsNullOrEmpty(user.FullName))
    {
        // Use initials if no image
        avatarView.ContentType = AvatarContentType.Initials;
        avatarView.AvatarName = user.FullName;
        avatarView.InitialsType = AvatarInitialsType.DoubleCharacter;
        avatarView.Background = GetColorFromName(user.FullName);
    }
    else
    {
        // Use default avatar character
        avatarView.ContentType = AvatarContentType.AvatarCharacter;
        avatarView.AvatarCharacter = AvatarCharacter.Avatar1;
    }
}

When to use: Fallback strategy when user data varies in completeness.

6. Square Avatar with Border for App Icons

<syncfusion:SfAvatarView
    ContentType="CustomImage"
    ImageSource="AppIcon.png"
    AvatarShape="Square"
    AvatarSize="Large"
    BorderBrush="Gray"
    BorderThickness="1"
    CornerRadius="8"/>

When to use: App icons, service logos, organization badges, square profile images.

7. Gradient Background Avatar with Initials

<syncfusion:SfAvatarView
    ContentType="Initials"
    AvatarName="Emma Wilson"
    InitialsType="DoubleCharacter"
    AvatarSize="Large"
    Foreground="White">
    <syncfusion:SfAvatarView.Background>
        <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
            <GradientStop Color="#FF6B5ACD" Offset="0"/>
            <GradientStop Color="#FF4169E1" Offset="1"/>
        </LinearGradientBrush>
    </syncfusion:SfAvatarView.Background>
</syncfusion:SfAvatarView>

When to use: Modern, visually appealing avatars with branded gradients.

Key Properties

PropertyTypeDefaultDescription
ContentTypeAvatarContentTypeDefaultType of content to display. Options: Default, Initials, CustomImage, AvatarCharacter, Group.
ImageSourceImageSourcenullCustom image for CustomImage content type. Path to user's profile picture.
AvatarNamestringnullName to generate initials from. Used with Initials content type.
AvatarCharacterAvatarCharacterAvatar1Pre-defined avatar character (Avatar1-Avatar25). Used with AvatarCharacter content type.
InitialsTypeAvatarInitialsTypeSingleCharacterHow initials are formatted. Options: SingleCharacter (first letter), DoubleCharacter (two letters).
AvatarShapeAvatarShapeCircleVisual shape. Options: Circle, Square, Custom.
AvatarSizeAvatarSizeSmallPre-defined size. Options: ExtraSmall, Small, Medium, Large, ExtraLarge.
GroupSourceIEnumerablenullCollection for Group content type. Supports up to 3 items.
InitialsMemberPathstringnullProperty path for initials in GroupSource items.
ImageSourceMemberPathstringnullProperty path for image in GroupSource items.
BackgroundColorMemberPathstringnullProperty path for background color in GroupSource items.
InitialsColorMemberPathstringnullProperty path for initials color in GroupSource items.
BackgroundBrushGrayBackground color or gradient for the avatar.
ForegroundBrushBlackText color for initials.
BorderBrushBrushnullBorder color around the avatar.
BorderThicknessThickness0Border thickness around the avatar.
CornerRadiusCornerRadiusAutoCorner radius for Custom shape.
FontFamilyFontFamilySegoe UIFont for initials text.
FontSizedoubleAutoFont size for initials (auto-calculated based on AvatarSize).

Common Use Cases

User Profiles

  • Profile pages with user avatars
  • Account settings with profile pictures
  • User dashboards
  • Member profiles

Best Approach: Use CustomImage if available, fallback to Initials with user's name.

Contact Lists

  • Phone contacts with avatars
  • Email contacts
  • Team member directories
  • Organization charts

Best Approach: Circle shape, Medium or Small size, CustomImage or Initials.

Chat/Messaging

  • Chat conversations with user avatars
  • Message threads
  • Comment sections
  • Forum posts

Best Approach: Small or Medium size, Circle shape, quick loading with Initials or AvatarCharacter.

Group Displays

  • Team collaboration views
  • Group chat participants
  • Project members
  • Shared document contributors

Best Approach: Use Group content type to show up to 3 participants.

App Navigation

  • User menu with profile picture
  • Navbar with logged-in user
  • Drawer navigation with profile
  • App bar with user avatar

Best Approach: Small or ExtraSmall size, Circle shape, initials for quick display.

Implementation Tips

  1. Initials Generation:

- SingleCharacter: First letter of AvatarName ("Alex" → "A") - DoubleCharacter single word: First and last letter ("Alex" → "AX") - DoubleCharacter multiple words: First letter of first two words ("John Doe" → "JD")

  1. Avatar Character Selection: 25 pre-defined avatars (Avatar1-Avatar25) provide diverse representation without custom images.
  2. Group View Limitations: Supports up to 3 items. If more items in GroupSource, only first 3 are displayed.
  3. Image Loading: Use BitmapImage with ms-appx:/// or https:// URIs. Handle loading errors gracefully.
  4. Background Colors: Generate consistent colors from user names using hash functions for visual consistency.
  5. Size Guidelines:

- ExtraSmall (32x32): Navigation bars, compact lists - Small (48x48): Chat messages, dense lists - Medium (64x64): Standard lists, cards - Large (96x96): Profile pages, prominent displays - ExtraLarge (128x128): Large profile headers, focus areas

  1. Performance: Initials render faster than images. Use initials for long lists, custom images for detail views.
  2. Accessibility: Avatar images should have AutomationProperties.Name set to user's name for screen readers.
  3. Theme Integration: Use ThemeResource for Background to auto-adapt to light/dark themes: Background="{ThemeResource SystemAccentColor}"
  4. Caching: Cache avatar images to avoid repeated downloads. Use local storage for frequently accessed avatars.

Related Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.52%
按下载量换算66

Claude

29.19%
按下载量换算54

Cursor

19.02%
按下载量换算35

Gemini CLI

9.66%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills