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

syncfusion-winui-badgeSynfusion Winui 徽章

Agent Skill

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

总安装

618

周安装

25

GitHub Stars

公开资料未说明

下载量

194
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Implementing Badges in WinUI

The Syncfusion WinUI Badge control (SfBadge) displays notifications, counts, or status indicators overlaid on other UI elements. Use badges to show unread message counts, notification indicators, status changes, or any numeric/text overlay on buttons, icons, or controls.

When to Use This Skill

Use this skill when you need to:

  • Display notification counts on buttons, icons, or UI elements
  • Show unread message indicators in messaging or email interfaces
  • Add status badges to user avatars or profile pictures
  • Create notification overlays on navigation items
  • Implement count indicators for shopping carts or lists
  • Show warning, error, or success states with badges
  • Position badges at specific locations on controls
  • Customize badge appearance (colors, shapes, animations)
  • Work with the SfBadge or BadgeContainer components

Component Overview

Key Capabilities:

  • Multiple shapes (Oval, Rectangle, Ellipse, Custom)
  • Predefined color states (Accent, Success, Warning, Error, Information)
  • Flexible positioning and alignment
  • Custom content and formatting
  • Animation support (Scale, Opacity)
  • Works with or without BadgeContainer
  • Complete customization (colors, fonts, strokes, rotation)

Basic Usage Pattern:

<notification:BadgeContainer>
    <notification:BadgeContainer.Content>
        <Button Content="Inbox"/>
    </notification:BadgeContainer.Content>
    <notification:BadgeContainer.Badge>
        <notification:SfBadge Content="10" Fill="Success"/>
    </notification:BadgeContainer.Badge>
</notification:BadgeContainer>

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

When you need to:

  • Install and set up the Badge component
  • Create your first Badge implementation
  • Add Badge to buttons or other controls
  • Understand BadgeContainer usage
  • Set basic badge content and properties
  • Learn the component structure

Shapes and Fill Styles

📄 Read: references/shapes-and-fills.md

When you need to:

  • Change badge shape (Oval, Rectangle, Ellipse)
  • Use predefined fill colors (Success, Warning, Error, etc.)
  • Understand badge color states
  • Create custom shapes with CustomShape property
  • Choose appropriate visual styles for different badge types

Alignment and Positioning

📄 Read: references/alignment-positioning.md

When you need to:

  • Align badge horizontally or vertically
  • Position badge inside, outside, or centered on edges
  • Place badge at custom positions (0-1 range)
  • Use anchor positioning
  • Adjust badge content alignment
  • Control padding and spacing
  • Handle auto re-positioning

Customization Options

📄 Read: references/customization.md

When you need to:

  • Set custom background and foreground colors
  • Create completely custom badge shapes
  • Customize badge UI with ContentTemplate
  • Add strokes and borders
  • Change text formatting (font, size, style)
  • Rotate badges
  • Adjust opacity
  • Control badge size
  • Hide or show badges

Features and Configuration

📄 Read: references/features.md

When you need to:

  • Add animations (Scale or Opacity)
  • Format badge content with converters
  • Use Badge without BadgeContainer
  • Implement badges in ListView or data templates
  • Apply advanced content formatting
  • Handle dynamic badge scenarios

Quick Start

1. Install NuGet Package

Install-Package Syncfusion.Notifications.WinUI

2. Import Namespace

xmlns:notification="using:Syncfusion.UI.Xaml.Notifications"

3. Basic Badge Implementation

<notification:BadgeContainer>
    <notification:BadgeContainer.Content>
        <Button Content="Notifications" Width="120" Height="40"/>
    </notification:BadgeContainer.Content>
    <notification:BadgeContainer.Badge>
        <notification:SfBadge Content="5" Fill="Error"/>
    </notification:BadgeContainer.Badge>
</notification:BadgeContainer>

Common Patterns

Pattern 1: Unread Message Count

<notification:BadgeContainer>
    <notification:BadgeContainer.Content>
        <Button Content="Messages" FontSize="16"/>
    </notification:BadgeContainer.Content>
    <notification:BadgeContainer.Badge>
        <notification:SfBadge Content="{x:Bind UnreadCount, Mode=OneWay}"
                             Fill="Error"
                             Shape="Ellipse"/>
    </notification:BadgeContainer.Badge>
</notification:BadgeContainer>

Pattern 2: Status Indicator

<notification:BadgeContainer>
    <notification:BadgeContainer.Content>
        <PersonPicture Width="60" Height="60" ProfilePicture="/Assets/user.png"/>
    </notification:BadgeContainer.Content>
    <notification:BadgeContainer.Badge>
        <notification:SfBadge Shape="None"
                             HorizontalPosition="0.85"
                             VerticalPosition="0.85">
            <Ellipse Width="16" Height="16" Fill="LimeGreen"/>
        </notification:SfBadge>
    </notification:BadgeContainer.Badge>
</notification:BadgeContainer>

Pattern 3: Success/Warning States

<!-- Success Badge -->
<notification:SfBadge Content="Verified"
                     Fill="Success"
                     Shape="Rectangle"/>

<!-- Warning Badge -->
<notification:SfBadge Content="!"
                     Fill="Warning"
                     Shape="Ellipse"/>

<!-- Error Badge -->
<notification:SfBadge Content="Error"
                     Fill="Error"
                     Shape="Oval"/>

Pattern 4: Custom Formatted Count

// Converter to format large numbers
public class CountFormatConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, string language)
    {
        if (int.TryParse(value?.ToString(), out int count))
        {
            if (count <= 99) return count.ToString();
            if (count <= 999) return "99+";
            if (count < 99999) return (count / 1000).ToString("0.#") + "K";
            return (count / 1000000).ToString("0.#") + "M";
        }
        return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, string language)
    {
        throw new NotImplementedException();
    }
}
<Page.Resources>
    <local:CountFormatConverter x:Key="countFormatter"/>
</Page.Resources>

<notification:SfBadge Content="{x:Bind Count, Mode=OneWay, Converter={StaticResource countFormatter}}"
                     Background="Red"
                     Foreground="White"/>

Pattern 5: Badge in ListView

<ListView ItemsSource="{x:Bind MailItems}">
    <ListView.ItemTemplate>
        <DataTemplate x:DataType="local:MailItem">
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*"/>
                    <ColumnDefinition Width="Auto"/>
                </Grid.ColumnDefinitions>

                <TextBlock Text="{x:Bind FolderName}"
                          VerticalAlignment="Center"/>

                <notification:SfBadge Grid.Column="1"
                                     Content="{x:Bind UnreadCount}"
                                     Fill="Warning"
                                     Shape="Oval"
                                     Visibility="{x:Bind HasUnread}"/>
            </Grid>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

Key Properties

Content and Display

  • Content - Text or number to display in badge
  • ContentTemplate - Custom template for badge content
  • Visibility - Show or hide badge (Visible/Collapsed)

Shape and Style

  • Shape - Badge shape: Oval, Rectangle, Ellipse, None, Custom
  • Fill - Predefined color: Accent, Success, Warning, Error, Information, Alt, Default
  • CustomShape - Geometry for custom badge shapes
  • Background/Foreground - Custom colors

Positioning (with BadgeContainer)

  • HorizontalAlignment - Left, Center, Right (default: Right)
  • VerticalAlignment - Top, Center, Bottom (default: Top)
  • HorizontalAnchor - Inside, Center, Outside (default: Center)
  • VerticalAnchor - Inside, Center, Outside (default: Center)
  • HorizontalPosition - 0 to 1 for custom positioning (default: 1)
  • VerticalPosition - 0 to 1 for custom positioning (default: 0)

Appearance

  • Width/Height - Badge dimensions (default: 40x30)
  • Padding - Internal content spacing
  • FontSize/FontFamily/FontStyle - Text formatting
  • Stroke/StrokeThickness - Border styling
  • Rotation - Rotation angle in degrees
  • Opacity - Transparency (0-1)

Animation

  • AnimationType - None, Scale, Opacity (animates on content change)

Common Use Cases

  1. Email/Messaging Apps - Unread message counts on inbox buttons
  2. E-commerce - Item counts in shopping cart badges
  3. Social Media - Notification counts on notification icons
  4. Status Indicators - Online/offline/away status on avatars
  5. Navigation Menus - New item indicators on menu items
  6. Dashboard Widgets - Alert counts on dashboard cards
  7. Forms - Error or warning indicators on form fields
  8. Lists - Item counts or status on list items

When to Use BadgeContainer vs Standalone

Use BadgeContainer when:

  • Badge needs to overlay another control (Button, Image, Icon)
  • You need automatic positioning relative to content
  • You want badge to follow content when resizing

Use standalone Badge when:

  • Badge is part of a layout (Grid, StackPanel)
  • You're handling positioning with layout containers
  • Using badges in ItemTemplates or DataTemplates
  • You need manual position control

Tips and Best Practices

  1. Choose appropriate Fill colors - Use Success (green) for positive states, Warning (orange) for alerts, Error (red) for critical notifications
  2. Keep content concise - Single digit, short text, or icon works best
  3. Use Ellipse shape for numbers - Oval or Ellipse shapes work well for numeric counts
  4. Format large numbers - Display "99+" for counts over 99 to avoid badge becoming too wide
  5. Consider accessibility - Ensure sufficient color contrast between background and foreground
  6. Animate content changes - Use Scale or Opacity animation to draw attention to updates
  7. Hide when zero - Set Visibility to Collapsed when count is zero or null
  8. Test different sizes - Verify badge appearance on various control sizes
  9. Use consistent positioning - Keep badge position consistent across similar controls in your app

Troubleshooting Quick Reference

IssueSolution
Badge not visibleCheck Visibility property, ensure Content is set, verify parent container size
Position incorrectReview HorizontalAnchor/VerticalAnchor values, check alignment properties
Content cut offIncrease Width/Height or adjust Padding
Color not applyingBackground overrides Fill - use one or the other
Animation not workingAnimation only triggers on Content change, verify AnimationType is set
Badge not overlappingEnsure using BadgeContainer, not standalone Badge

For detailed implementation guidance, refer to the specific documentation files listed in the Navigation Guide above.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.75%
按下载量换算64

Claude

29.51%
按下载量换算57

Cursor

19.99%
按下载量换算39

Gemini CLI

9.92%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills