Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-winforms-combobox同步融合 winforms 组合框

Agent Skill

syncfusion-winforms-combobox 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

706

周安装

30

GitHub Stars

1

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/winforms-ui-components-skills --skill syncfusion-winforms-combobox

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持根据关键词、任务场景或来源线索进行信息匹配。
  • 通过 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网操作。
  • 适用于需要精准检索信息的场景。

SKILL.md

Implementing ComboBoxes

This skill explains how to implement and customize the Syncfusion Windows Forms SfComboBox control.

When to Use This Skill

  • Use when the user needs a combobox/dropdown control in Windows Forms applications
  • Use when implementing autocomplete functionality with Suggest, Append, or SuggestAppend modes
  • Use when enabling multi-selection with checkboxes or token-based selection
  • Use when binding combobox to data sources (lists, databases, LINQ to SQL)
  • Use when implementing filtering or sorting in dropdown lists
  • Use when customizing dropdown appearance, watermarks, or themes
  • Use when adding custom controls to dropdown headers/footers
  • Use when implementing token-based multi-selection (chip-style inputs)

Navigation Guide

Follow the links below to open focused reference pages for each task.

Getting Started

📄 Read: references/getting-started.md

  • Assembly deployment and dependencies
  • Creating SfComboBox via designer or code
  • Basic data binding setup
  • Quick autocomplete example
  • Quick multi-selection example

Overview

📄 Read: references/overview.md

  • Component features and capabilities
  • Comparison with ComboBoxAdv, MultiSelectionComboBox, ComboBoxAutoComplete
  • API comparison table
  • When to use SfComboBox vs alternatives

Data Binding

📄 Read: references/data-binding.md

  • DataSource, DisplayMember, ValueMember properties
  • Binding to custom objects and collections
  • Binding from Microsoft Access database
  • Binding from LINQ to SQL classes
  • Complex data binding scenarios

AutoComplete

📄 Read: references/autocomplete.md

  • AutoCompleteMode: Suggest, Append, SuggestAppend
  • Case-sensitive autocomplete
  • AutoCompleteSuggestMode: StartsWith, Contains
  • Setting autocomplete delay
  • Complete code examples

Selection

📄 Read: references/selection.md

  • Single selection (SelectedIndex, SelectedValue, SelectedItem)
  • SelectedIndexChanged and SelectedValueChanged events
  • Multi-selection mode with checkboxes
  • Select all feature
  • Delimiter character customization
  • Tooltip for selected items
  • Clear button customization

Token Support

📄 Read: references/token.md

  • EnableToken property for chip-style selection
  • Token appearance customization (TokenStyle)
  • Adding and removing tokens
  • Keyboard navigation for tokens
  • SelectedValueChanged event for token tracking

Filtering

📄 Read: references/filtering.md

  • Filter property with custom predicates
  • RefreshFilter method
  • Complete filtering example
  • Custom filter conditions

Sorting

📄 Read: references/sorting.md

  • SortDescriptors property
  • Ascending and descending sort
  • Custom comparer support

Dropdown Customization

📄 Read: references/dropdown.md

  • MaxDropDownItems for limiting visible items
  • AllowDropDownResize for resize gripper
  • DropDownOpening and DropDownClosing events
  • DropDownPosition customization
  • DropDownWidth customization
  • Loading custom header/footer controls
  • Complete custom control example

Watermark

📄 Read: references/watermark.md

  • AllowNull property for null value support
  • Watermark text customization
  • WatermarkForeColor styling

Appearance & Styling

📄 Read: references/appearance.md

  • Visual styles and theming
  • BackColor, ForeColor customization
  • Border and font customization
  • Office 2016 themes

Editing

📄 Read: references/editing.md

  • DropDownStyle property
  • Edit behavior customization
  • Read-only mode

Item Height

📄 Read: references/item-height.md

  • ItemHeight property
  • Customizing dropdown item heights

Localization

📄 Read: references/localization.md

  • Culture-specific formatting
  • Resource file integration

UI Automation

📄 Read: references/ui-automation.md

  • Accessibility features
  • Screen reader support
  • Keyboard navigation

Quick Start

Minimal SfComboBox example (C#):

using Syncfusion.WinForms.ListView;

namespace WindowsFormsApp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            // Create SfComboBox
            SfComboBox sfComboBox1 = new SfComboBox();
            sfComboBox1.Location = new Point(20, 20);
            sfComboBox1.Size = new Size(200, 28);

            // Bind data
            List<string> states = new List<string> { "Alaska", "Arizona", "California", "Colorado", "Delaware" };
            sfComboBox1.DataSource = states;

            this.Controls.Add(sfComboBox1);
        }
    }
}

With autocomplete:

sfComboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
sfComboBox1.AutoCompleteSuggestMode = AutoCompleteSuggestMode.Contains;

With multi-selection:

sfComboBox1.ComboBoxMode = ComboBoxMode.MultiSelection;
sfComboBox1.AllowSelectAll = true;

Common Patterns

Pattern 1: Data Binding with Custom Objects

public class USState
{
    public string LongName { get; set; }
    public string ShortName { get; set; }
}

List<USState> states = new List<USState>
{
    new USState { LongName = "California", ShortName = "CA" },
    new USState { LongName = "Texas", ShortName = "TX" }
};

sfComboBox1.DataSource = states;
sfComboBox1.DisplayMember = "LongName";
sfComboBox1.ValueMember = "ShortName";

Pattern 2: Multi-Selection with Tokens

sfComboBox1.EnableToken = true;
sfComboBox1.Style.TokenStyle.BackColor = Color.LightBlue;
sfComboBox1.Style.TokenStyle.BorderColor = Color.Blue;

Pattern 3: Custom Dropdown Header

sfComboBox1.DropDownListView.ShowHeader = true;
TextBox searchBox = new TextBox { Height = 25 };
sfComboBox1.DropDownListView.HeaderControl = searchBox;

Pattern 4: Filtering with Predicate

sfComboBox1.DropDownListView.View.Filter = (data) =>
{
    return ((USState)data).LongName.StartsWith("C");
};
sfComboBox1.DropDownListView.View.RefreshFilter();

Key Properties

PropertyTypeDescription
DataSourceobjectBind to IEnumerable data source
DisplayMemberstringProperty name to display
ValueMemberstringProperty name for value
AutoCompleteModeenumSuggest, Append, SuggestAppend, None
ComboBoxModeenumSingleSelection, MultiSelection
EnableTokenboolEnable token-based selection
AllowSelectAllboolShow "Select All" in multi-select
WatermarkstringPlaceholder text when empty
MaxDropDownItemsintMax visible items in dropdown
ShowClearButtonboolShow clear button when selected
ThemeNamestringApply visual theme

Common Use Cases

Use Case 1: Country/State Selector

Implement a country or state dropdown with autocomplete for quick selection in address forms.

Use Case 2: Tag/Category Selection

Use multi-selection with tokens for selecting multiple tags or categories in content management systems.

Use Case 3: Searchable Dropdown

Add a search textbox in the dropdown header to filter large lists dynamically.

Use Case 4: Dependent Dropdowns

Implement cascading dropdowns where the second dropdown filters based on the first selection.

Use Case 5: Custom Item Templates

Create custom visual representations for dropdown items with images or multiple text lines.

Troubleshooting

Issue: Autocomplete not working

  • Solution: Ensure AutoCompleteMode is set to Suggest, Append, or SuggestAppend (not None)

Issue: Multi-selection checkboxes not showing

  • Solution: Set ComboBoxMode = ComboBoxMode.MultiSelection

Issue: DataSource not displaying items

  • Solution: Verify DisplayMember matches a public property name in your data objects

Issue: Tokens not appearing

  • Solution: Set EnableToken = true and select items from the dropdown

Issue: Dropdown not resizing

  • Solution: Check AllowDropDownResize property is true (default)

Issue: SelectedValue returns null

  • Solution: Ensure ValueMember is set correctly, or use SelectedItem directly

Issue: Filtering not working

  • Solution: Call DropDownListView.View.RefreshFilter() after setting the Filter predicate

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.65%
按下载量换算86

Claude

28.86%
按下载量换算71

Cursor

18.61%
按下载量换算46

Gemini CLI

10.95%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills