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

syncfusion-winui-dropdown-color-pickerSynfusion WinUI 下拉颜色选择器

Agent Skill

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

总安装

582

周安装

24

GitHub Stars

公开资料未说明

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

Synfusion WinUI 下拉颜色选择器组件,用于在 Windows UI 应用中实现颜色选择功能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境的前端设计场景。
  • 通过 GitHub 仓库安装,支持 npx skills add 命令快速集成到项目中。
  • 使用前需确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 建议结合原始 README 文档核验具体用法和兼容性要求。

SKILL.md

Implementing Syncfusion WinUI DropDown Color Picker

The WinUI DropDown Color Picker (SfDropDownColorPicker) is a versatile control for color selection and editing. It displays a color spectrum as a dropdown button with support for multiple color channel modes, opacity adjustment, and extensive customization options.

When to Use This Skill

  • User needs: Interactive color selection UI with dropdown behavior
  • User needs: Support for multiple color formats (RGB, HSV, HSL, CMYK, Hexadecimal)
  • User needs: Customizable dropdown placement and split button mode
  • User needs: Embedded color picker customization within a dropdown
  • User needs: Color change event handling and color binding
  • User needs: Custom header UI or dropdown button styling

Component Overview

Key Features

  • Color Editing: Drag to select colors or enter values manually in RGB, HSV, HSL, CMYK, or Hex formats
  • Hue Spectrum Slider: Quickly select hue values
  • Color Channel Modes: Switch between RGB, HSV, HSL, and CMYK color spaces
  • Split Mode: Optional button + dropdown arrow separation
  • Dropdown Customization: Control placement (full, center, left, right, top, bottom)
  • Opacity Control: Adjust alpha/transparency values
  • Event Handling: SelectedBrushChanged, DropDownOpened, DropDownClosed events
  • Custom Templates: Customize header and dropdown button UI

Required NuGet Package

  • Syncfusion.Editors.WinUI

Note: Ensure you update the Syncfusion.Editors.WinUI NuGet package to the latest available version via the NuGet package manager before building or releasing your application.

Namespace

  • Syncfusion.UI.Xaml.Editors

Documentation and Navigation Guide

Choose the reference guide based on your task:

Getting Started

📄 Read: references/getting-started.md

  • Installation and NuGet setup
  • Creating projects with DropDown Color Picker
  • Basic XAML and C# implementation
  • Programmatic color selection
  • Interactive color selection
  • Color channel switching (RGB, HSV, HSL, CMYK)
  • Opacity and alpha value adjustment
  • Hexadecimal color editor usage

Color Picker Customization

📄 Read: references/color-picker-customization.md

  • Customizing the embedded color picker
  • Using AttachedFlyout and DropDownFlyout
  • Brush type options (SolidColorBrush, LinearGradientBrush, etc.)
  • Size and appearance customization
  • Embedded color picker examples

Dropdown Modes and Placement

📄 Read: references/dropdown-modes-and-placement.md

  • Dropdown placement modes
  • DropDownPlacement property usage
  • Split mode (button + dropdown arrow)
  • Command binding in split mode
  • Dropdown vs. full dropdown behavior
  • Custom header UI styling

Events and Commands

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

  • SelectedBrushChanged event
  • OldBrush and NewBrush properties
  • DropDownOpened and DropDownClosed events
  • Command binding patterns
  • Event handling code examples

Header and UI Customization

📄 Read: references/header-and-ui-customization.md

  • ContentTemplate for selected color button
  • DropDownButtonTemplate for dropdown button
  • Custom UI styling in XAML
  • Split mode custom headers
  • DataContext binding patterns
  • Complete template examples

Quick Start Example

Basic Implementation (XAML)

<Page xmlns:editors="using:Syncfusion.UI.Xaml.Editors">
    <Grid>
        <editors:SfDropDownColorPicker x:Name="colorPicker"
                                       SelectedBrush="Blue" />
    </Grid>
</Page>

Basic Implementation (C#)

using Syncfusion.UI.Xaml.Editors;

public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();

        SfDropDownColorPicker colorPicker = new SfDropDownColorPicker();
        colorPicker.SelectedBrush = new SolidColorBrush(Colors.Blue);

        grid.Children.Add(colorPicker);
    }
}

Listening to Color Changes

// Subscribe to color change event
colorPicker.SelectedBrushChanged += ColorPicker_SelectedBrushChanged;

private void ColorPicker_SelectedBrushChanged(object sender, SelectedBrushChangedEventArgs e)
{
    var oldColor = e.OldBrush;
    var newColor = e.NewBrush;

    // Apply the selected color
    myElement.Background = newColor;
}

Common Use Cases

1. Theme Color Selector

Allow users to select application theme colors:

// User selects a color → apply to app background
SfDropDownColorPicker themeColorPicker = new SfDropDownColorPicker();
themeColorPicker.SelectedBrushChanged += (s, e) =>
{
    Window.Current.Content.Background = e.NewBrush;
};

2. Split Button Mode for Direct Application

Apply last selected color with button click, open dropdown to change:

<editors:SfDropDownColorPicker DropDownMode="Split"
                               Command="{x:Bind ApplyColorCommand}" />

3. Custom Color Editor Interface

Embed specific color picker configuration:

<editors:SfDropDownColorPicker>
    <FlyoutBase.AttachedFlyout>
        <editors:DropDownFlyout>
            <editors:SfColorPicker BrushTypeOptions="LinearGradientBrush"
                                   Width="250" />
        </editors:DropDownFlyout>
    </FlyoutBase.AttachedFlyout>
</editors:SfDropDownColorPicker>

4. Positioned Dropdown (Top-Right)

Control where the color picker opens:

<editors:SfDropDownColorPicker DropDownPlacement="TopEdgeAlignedRight" />

Key Properties

PropertyTypePurposeCommon Values
SelectedBrushBrushCurrently selected colorColors.Blue, new SolidColorBrush()
DropDownModeenumDropdown behaviorDropdown, Split
DropDownPlacementFlyoutPlacementModePosition of dropdownFull, Top, Bottom, Left, Right
CommandICommandCommand triggered on button clickCustom ICommand implementation

Common Patterns

Pattern 1: Color Binding to UI Element

// When color is selected, immediately apply to target element
void ColorPicker_SelectedBrushChanged(object sender, SelectedBrushChangedEventArgs e)
{
    targetRectangle.Fill = e.NewBrush;
}

Pattern 2: Validating Color Selection

void ColorPicker_SelectedBrushChanged(object sender, SelectedBrushChangedEventArgs e)
{
    // Validate color meets requirements
    if (IsValidColor(e.NewBrush))
    {
        ApplyColor(e.NewBrush);
    }
    else
    {
        colorPicker.SelectedBrush = e.OldBrush; // Revert
    }
}

Pattern 3: Split Mode with Custom Command

public ICommand QuickApplyCommand => new RelayCommand(() =>
{
    // Apply current selected color without opening dropdown
    ApplySelectedColorToTextSelection();
});

Next Steps

  • Start with: getting-started.md to set up basic DropDown Color Picker
  • Then explore: Other reference guides based on your specific needs
  • For production: Review all guides for complete customization capabilities

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.02%
按下载量换算65

Claude

30.63%
按下载量换算58

Cursor

18.81%
按下载量换算36

Gemini CLI

9.49%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills