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

syncfusion-winforms-xptaskpane同步融合 winform xptaskpane

Agent Skill

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

总安装

685

周安装

28

GitHub Stars

公开资料未说明

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Implementing Syncfusion XPTaskPane

The XPTaskPane component is a Microsoft Office XP-inspired container control that hosts multiple task pages with built-in navigation and design-time support. Use it when you need a professional-looking multi-page layout with page browsing via dropdown menu and navigation buttons.

When to Use XPTaskPane

Use XPTaskPane when you need to:

  • Create multi-page layouts inspired by Office XP UI
  • Provide navigation between multiple content panels
  • Allow users to browse pages via dropdown menu or arrow buttons
  • Build collapsible task pane interfaces
  • Organize related functionality into distinct pages
  • Provide design-time drag-and-drop support for pages

Component Overview

XPTaskPane consists of:

  • XPTaskPane - Main container control
  • WizardContainer - Page container (automatically added)
  • XPTaskPage - Individual pages displayed in the pane
  • Header - Navigation toolbar with buttons, menu, and close icon
XPTaskPane (main control)
├── HeaderLeftToolbar (previous/next buttons)
├── HeaderRightToolbar (menu dropdown + close button)
└── TaskPanePageContainer (WizardContainer)
    ├── XPTaskPage 1
    ├── XPTaskPage 2
    └── XPTaskPage N

Documentation Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Assembly dependencies and NuGet installation
  • Adding XPTaskPane via Form Designer
  • Adding XPTaskPane programmatically with code
  • Creating WizardContainer and XPTaskPage instances
  • Basic initialization steps

Page Management

📄 Read: references/page-management.md

  • Creating and adding XPTaskPage instances
  • Configuring page title and layout name
  • Adding controls to task pages
  • Accessing the TaskPages collection
  • SelectedPage property usage

Navigation & Header Controls

📄 Read: references/navigation-header.md

  • Header toolbar components and items
  • Navigation button visibility and functionality
  • Dropdown menu for page selection
  • Header menu customization
  • Close button configuration
  • Custom images for toolbar buttons

Page Reordering & Navigation

📄 Read: references/page-reordering.md

  • Reordering pages at design-time
  • NextPage and PreviousPage properties
  • Sequential page navigation at runtime
  • Bring to Front and Send to Back operations
  • Page ordering in collection editor

Appearance & Styling

📄 Read: references/appearance-styling.md

  • Visual styles (OfficeXP and Office2007)
  • Font and foreground color customization
  • Border styles and border properties
  • Header label styling
  • Page-level appearance configuration
  • Custom colors and color schemes

Content Scrolling

📄 Read: references/scrolling-content.md

  • Enabling vertical scrolling on pages
  • ScrollSpeed property configuration
  • Scroll behavior on mouse hover
  • Content overflow handling

Quick Start Example

using Syncfusion.Windows.Forms.Tools;

// Step 1: Create XPTaskPane
XPTaskPane xpTaskPane1 = new XPTaskPane();
this.Controls.Add(xpTaskPane1);

// Step 2: Create and add WizardContainer
WizardContainer wizardContainer1 = new WizardContainer();
xpTaskPane1.Controls.Add(wizardContainer1);
xpTaskPane1.TaskPanePageContainer = wizardContainer1;

// Step 3: Create task pages
XPTaskPage page1 = new XPTaskPage();
page1.Title = "Page 1";
wizardContainer1.Controls.Add(page1);

XPTaskPage page2 = new XPTaskPage();
page2.Title = "Page 2";
wizardContainer1.Controls.Add(page2);

// Step 4: Set pages in TaskPages collection
xpTaskPane1.TaskPages = new XPTaskPage[] { page1, page2 };

// Step 5: Add controls to pages
Button btn = new Button() { Text = "Click Me" };
page1.Controls.Add(btn);

Common Patterns

Pattern 1: Designer-Based Setup

  1. Drag XPTaskPane from toolbox to form
  2. Click "Add Page" in Smart Tags
  3. Design each page visually
  4. No code required for basic setup

Pattern 2: Runtime Page Creation

  • Create pages dynamically in response to data or conditions
  • Use TaskPages property to update collection
  • Useful for dynamic layouts

Pattern 3: Navigation Between Pages

  • Set NextPage and PreviousPage properties
  • Define page sequence programmatically
  • Control order independent of collection

Pattern 4: Custom Styling

  • Set VisualStyle to Office2007 or OfficeXP
  • Customize Font and ForeColor globally
  • Override individual page appearance

Key Properties at a Glance

PropertyTypePurpose
TaskPagesXPTaskPage[]Array of all task pages
SelectedPageXPTaskPageCurrently active page
TaskPanePageContainerControlContainer for pages (WizardContainer)
VisualStyleVisualStyleOffice theme (OfficeXP or Office2007)
ScrollSpeedintScroll speed for page content
VerticalScrollboolEnable vertical scrolling
FontFontGlobal font for task pane
ForeColorColorGlobal text color
HeaderLabelLabelHeader text control
HeaderLeftToolbarToolBarPrevious/next navigation buttons
HeaderRightToolbarToolBarMenu and close button

Typical Use Cases

  1. Multi-Step Wizard - Create step-by-step workflows
  2. Settings Dashboard - Organize settings into logical sections
  3. Document Viewer - Browse multiple document sections
  4. Feature Explorer - Group related features into pages
  5. Task Organization - Display related tasks in collapsible pages

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.66%
按下载量换算87

Claude

29.73%
按下载量换算65

Cursor

18.31%
按下载量换算40

Gemini CLI

9.23%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills