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

syncfusion-winforms-autolabel同步融合 winform 自动标签

Agent Skill

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

总安装

713

周安装

30

GitHub Stars

1

下载量

250
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于处理 WinForms AutoLabel 相关的协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。
  • 通过 GitHub 安装,需结合来源仓库文档使用。
  • 建议确认权限范围和维护状态后再使用。
  • syncfusion-winforms-autolabel 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Syncfusion WinForms AutoLabel Control

The AutoLabel control is a Label-inspired control that lets you pair a label with any other control. Once paired, the AutoLabel automatically repositions itself as the labeled control's position changes, ensuring labels and controls always stay synchronized.

When to Use This Skill

Use the AutoLabel control when you need to:

  • Add labels that automatically follow their associated controls
  • Create dynamic form layouts where controls can move
  • Implement complex form designs with FlowLayout manager
  • Ensure labels always stay positioned correctly relative to controls
  • Build forms that resize or reorganize controls dynamically
  • Create professional forms with consistent label-control spacing
  • Simplify form layout management with automatic positioning

Installation

NuGet Installation

Install-Package Syncfusion.Tools.Windows

Assembly Reference

Add reference to:

  • Syncfusion.Shared.Base.dll

Quick Start

Basic Setup

using System;
using System.Windows.Forms;
using Syncfusion.Windows.Forms.Tools;

namespace AutoLabelDemo
{
    public partial class Form1 : Form
    {
        private AutoLabel autoLabel1;
        private TextBoxExt textBoxExt1;

        public Form1()
        {
            InitializeComponent();

            // Create a control to label (e.g., TextBox)
            textBoxExt1 = new TextBoxExt();
            textBoxExt1.Location = new System.Drawing.Point(150, 50);
            textBoxExt1.Size = new System.Drawing.Size(200, 20);

            // Create AutoLabel
            autoLabel1 = new AutoLabel();
            autoLabel1.Text = "Username:";
            autoLabel1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular);

            // Pair the label with the control
            autoLabel1.LabeledControl = textBoxExt1;
            autoLabel1.Position = AutoLabelPosition.Left;
            autoLabel1.Gap = 10;

            // Add to form
            this.Controls.Add(textBoxExt1);
            this.Controls.Add(autoLabel1);
        }
    }
}

Designer Setup

  1. Drag AutoLabel control from Toolbox to Form
  2. Drag another control (e.g., TextBox) to the form
  3. Right-click AutoLabel → Properties → Set LabeledControl to your control
  4. Configure Position and Gap properties
  5. The label will now auto-position relative to the control

Core Concepts

Label-Control Pairing

The AutoLabel pairs with any control through the LabeledControl property. Once paired, the label automatically tracks the control's position.

Automatic Repositioning

When the labeled control moves, the AutoLabel automatically adjusts its position based on the Position and Gap settings.

FlowLayout Integration

FlowLayout managers treat AutoLabel-labeled control pairs as a single unit, enabling powerful dynamic form layouts.

Navigation Guide

🚀 Getting Started

📄 Read: references/getting-started.md

  • Installation and assembly deployment
  • Adding AutoLabel via Designer
  • Adding AutoLabel programmatically
  • Labeling a control
  • Basic configuration
  • Running your first AutoLabel application

📐 Positioning and Spacing

📄 Read: references/positioning-spacing.md

  • Position property (Left, Top, Side, Custom)
  • Gap setting between label and control
  • DX and DY properties for fine control
  • Custom positioning with mouse
  • Spacing best practices

🎨 Appearance and Theming

📄 Read: references/appearance-theming.md

  • AutoSize for automatic label sizing
  • BackColor and ForeColor customization
  • Font settings
  • TextAlign property
  • SkinManager theming (Office 2016 styles)
  • Visual styles

⚡ Events

📄 Read: references/events.md

  • PropertyChanged event
  • Handling label-control updates
  • Event arguments
  • Common event scenarios

🎯 Overview and Use Cases

📄 Read: references/overview.md

  • Component architecture
  • FlowLayout integration
  • Form layout patterns
  • When to use AutoLabel vs standard Label

Common Patterns

Pattern 1: Simple Form with Left-Aligned Labels

// Create form fields with left-aligned labels
AutoLabel nameLabel = new AutoLabel();
nameLabel.Text = "Name:";
nameLabel.LabeledControl = nameTextBox;
nameLabel.Position = AutoLabelPosition.Left;
nameLabel.Gap = 10;

AutoLabel emailLabel = new AutoLabel();
emailLabel.Text = "Email:";
emailLabel.LabeledControl = emailTextBox;
emailLabel.Position = AutoLabelPosition.Left;
emailLabel.Gap = 10;

this.Controls.Add(nameTextBox);
this.Controls.Add(nameLabel);
this.Controls.Add(emailTextBox);
this.Controls.Add(emailLabel);

Pattern 2: Top-Aligned Labels (Vertical Form)

AutoLabel addressLabel = new AutoLabel();
addressLabel.Text = "Address:";
addressLabel.LabeledControl = addressTextBox;
addressLabel.Position = AutoLabelPosition.Top;
addressLabel.Gap = 5;
addressLabel.AutoSize = true;

Pattern 3: Custom Positioned Labels

AutoLabel customLabel = new AutoLabel();
customLabel.Text = "Custom:";
customLabel.LabeledControl = myControl;
customLabel.Position = AutoLabelPosition.Custom;
customLabel.DX = -100;  // 100 pixels to the left
customLabel.DY = 15;    // 15 pixels down from control top

Pattern 4: Themed Form with AutoLabels

using Syncfusion.Windows.Forms;

// Apply Office 2016 theme to all labels
SkinManager.SetVisualStyle(label1, VisualTheme.Office2016Colorful);
SkinManager.SetVisualStyle(label2, VisualTheme.Office2016Colorful);
SkinManager.SetVisualStyle(label3, VisualTheme.Office2016Colorful);

Pattern 5: FlowLayout with AutoLabel Pairs

FlowLayoutPanel flowPanel = new FlowLayoutPanel();
flowPanel.FlowDirection = FlowDirection.TopDown;
flowPanel.Dock = DockStyle.Fill;

// FlowLayout treats AutoLabel + Control as one unit
flowPanel.Controls.Add(firstNameTextBox);
flowPanel.Controls.Add(firstNameLabel);  // Paired with firstNameTextBox
flowPanel.Controls.Add(lastNameTextBox);
flowPanel.Controls.Add(lastNameLabel);   // Paired with lastNameTextBox

// Labels automatically move with their controls
this.Controls.Add(flowPanel);

Key Properties Reference

PropertyTypeDefaultDescription
LabeledControlControlnullThe control that this label is paired with
PositionAutoLabelPositionLeftRelative position: Left, Top, Side, Custom
Gapint0Horizontal and vertical gap between label and control
DXint0Horizontal distance from label left to control left
DYint0Vertical distance from label top to control top
AutoSizeboolfalseAutomatically resize based on font size
Textstring""Label text content
TextAlignContentAlignmentTopLeftText alignment within label
BackColorColorControlBackground color of the label
ForeColorColorControlTextText color of the label
FontFont-Font for the label text

Position Options

PositionBehavior
LeftLabel appears to the left of the control
TopLabel appears above the control
SideLabel appears on the side (right) of the control
CustomManual positioning using DX and DY or mouse drag

Events

EventDescription
PropertyChangedFired when LabeledControl, Gap, or Position properties change

Best Practices

  1. Pair Before Adding: Set LabeledControl before adding to form for proper initialization
  2. Use Gap for Spacing: Use the Gap property instead of manual positioning for consistent spacing
  3. Choose Appropriate Position:

- Use Left for horizontal forms - Use Top for stacked/vertical forms - Use Custom only when necessary

  1. Enable AutoSize: Set AutoSize = true for labels that don't wrap text
  2. FlowLayout Integration: Leverage FlowLayout to treat label-control pairs as units
  3. Consistent Theming: Apply the same visual style to all AutoLabels in a form
  4. Test Movement: Verify labels follow controls when controls are repositioned dynamically
  5. Avoid Overlapping: Ensure Gap and positioning prevent label-control overlap

Visual Styles

Supported themes via SkinManager:

  • Office2016Colorful
  • Office2016Black
  • Office2016DarkGray
  • Office2016White
SkinManager.SetVisualStyle(this.autoLabel1, VisualTheme.Office2016Colorful);

Framework Support

  • .NET Framework 4.5 and above
  • .NET 6.0,.NET 7.0,.NET 8.0 (Windows)
  • .NET Core 3.1 (Windows)

Additional Resources

Troubleshooting

Issue: Label doesn't move with control

  • Ensure LabeledControl property is set
  • Verify both label and control are added to the same container
  • Check that the control's position is actually changing

Issue: Label positioning is off

  • Adjust Gap property for spacing
  • Use DX and DY for fine-tuning if needed
  • Verify Position property is set correctly

Issue: Label overlaps control

  • Increase Gap value
  • Choose different Position (e.g., Top instead of Left)
  • Check control sizes allow sufficient space

Issue: Theme not applied

  • Ensure SkinManager assembly is referenced
  • Verify theme is supported (Office 2016 variants only)
  • Apply theme after adding control to form

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.82%
按下载量换算80

Claude

30.45%
按下载量换算76

Cursor

19.9%
按下载量换算50

Gemini CLI

8.45%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills