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

syncfusion-winforms-common同步融合 winforms 常见

Agent Skill

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

总安装

734

周安装

30

GitHub Stars

公开资料未说明

下载量

235
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行信息整理。
  • 通过 GitHub 仓库安装,需参考原始 README 了解功能细节。
  • 安装前建议确认权限与维护状态,防止意外执行命令或访问资源。
  • 适用于项目协作与代码变更跟踪。

SKILL.md

Implementing Syncfusion Windows Forms Components

Comprehensive guide for implementing Syncfusion® Essential Studio® Windows Forms (WinForms) controls in desktop applications. This skill covers everything from initial setup and installation to localization and.NET compatibility.

When to Use This Skill

Use this skill when you need to:

  • Add Syncfusion WinForms controls to a Windows Forms application
  • Register and manage license keys for WinForms applications
  • Install or upgrade Syncfusion WinForms via installer or NuGet
  • Set up.NET Core /.NET 5-9 projects with Syncfusion WinForms controls
  • Enable High DPI support for Syncfusion WinForms controls
  • Localize Syncfusion WinForms controls for different cultures
  • Troubleshoot installation, licensing, or runtime errors

Library Overview

Syncfusion® Essential Studio® for Windows Forms provides a comprehensive suite of UI controls for building rich Windows desktop applications, including grids, charts, schedulers, editors, navigation, layout, and input controls. All controls are designed for WinForms applications and support.NET Framework 4.6.2+ and.NET 6.0–9.0.


Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Adding controls via Designer (Toolbox drag-drop)
  • Adding controls via Code (C# / VB)
  • Using Project Templates and Item Templates
  • Assembly references required for controls
  • Control dependency lookup (assembly and NuGet per control)

Localization

📄 Read: references/localization.md

  • Using ILocalizationProvider interface
  • Using Satellite Assemblies for multi-language support
  • Localizing with .resx files
  • Changing application culture at runtime
  • Editing default culture strings

High DPI Support

📄 Read: references/high-dpi-support.md

  • DPI awareness overview (DPI-aware vs non-DPI-aware apps)
  • DPI compatibility test matrix
  • Enabling DPI awareness via app.manifest
  • AutoScaleDimensions and AutoScaleMode setup
  • Enabling DpiAware property for Grid controls
  • Auto-switching images by DPI scaling with ImageListAdv

System Requirements

📄 Read: references/system-requirements.md

  • Supported Windows OS versions
  • Hardware requirements (processor, RAM, disk)
  • Supported Visual Studio versions
  • Supported.NET Framework and.NET versions

.NET Compatibility

📄 Read: references/dotnet-compatibility.md

  • Creating WinForms apps with.NET Core /.NET 5-9
  • Adding Syncfusion controls in.NET Core projects (assembly / NuGet)
  • .NET Framework and.NET Core version compatibility matrix
  • Version-specific.NET support per Syncfusion release

Upgrading

📄 Read: references/upgrading.md

  • Upgrading via Control Panel / website installer
  • Upgrading via Visual Studio Extensions
  • Upgrading NuGet packages via Package Manager UI
  • Upgrading NuGet packages via Package Manager Console
  • Upgrading NuGet packages via.NET CLI
  • Upgrading from trial to licensed version

Installation

📄 Read: references/installation.md

  • Downloading the offline installer (trial and licensed)
  • Installing with the UI wizard (step-by-step)
  • Silent/command-line installation and uninstallation
  • Installing NuGet packages via Package Manager UI
  • Installing NuGet packages via.NET CLI
  • Installing NuGet packages via Package Manager Console
  • Common installation errors and solutions

Quick Start

1. Install via NuGet

# Package Manager Console
Install-Package Syncfusion.Shared.Base

# .NET CLI
dotnet add package Syncfusion.Shared.Base

2. Register License Key

Register the license before any Syncfusion control is initialized:

// Program.cs — in static void Main(), before Application.Run()
static void Main()
{
    string licenseKey = ConfigurationManager.AppSettings["SyncfusionLicenseKey"];

    if (string.IsNullOrEmpty(licenseKey))
    {
        MessageBox.Show("Syncfusion license key not configured!", "Configuration Error");
        return;
    }

    SyncfusionLicenseProvider.RegisterLicense(licenseKey);

    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());
}

3. Add a Control via Code

using Syncfusion.Windows.Forms.Tools;

// Create and configure the control
TextBoxExt textBox = new TextBoxExt();
textBox.Location = new System.Drawing.Point(100, 100);
textBox.Size = new System.Drawing.Size(200, 25);

// Add to form
this.Controls.Add(textBox);

Common Patterns

Enable High DPI

In app.manifest:

<application xmlns="urn:schemas-microsoft-com:asm.v3">
  <windowsSettings>
    <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
  </windowsSettings>
</application>

In code (for Grid controls):

gridControl1.DpiAware = true;

Localize Controls at Runtime

// Set culture before InitializeComponent()
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("de-DE");
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("de-DE");

Key Assemblies

AssemblyControls Covered
Syncfusion.Shared.BaseButtonAdv, most shared controls
Syncfusion.Tools.WindowsComboBoxAdv, DockingManager, TabControlAdv, and most Tools controls
Syncfusion.Grid.WindowsGridControl, GridGroupingControl
Syncfusion.Chart.WindowsChart control
Syncfusion.SfDataGrid.WinFormsSfDataGrid
For per-control dependency lookup, read references/getting-started.md.

Common Use Cases

  • Business forms: Add input controls, editors, and validation with Syncfusion WinForms tools
  • Data-heavy UIs: Use GridControl or SfDataGrid with high DPI support
  • Multi-language apps: Use .resx files or ILocalizationProvider for localization
  • CI/CD pipelines: Validate license key automatically using LicenseKeyValidator

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.28%
按下载量换算83

Claude

30.5%
按下载量换算72

Cursor

19.32%
按下载量换算45

Gemini CLI

10.47%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/syncfusion/winforms-ui-components-skills --skill syncfusion-winforms-common 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills