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

syncfusion-wpf-wizard-controlsyncfusion wpf 向导控件

Agent Skill

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

总安装

998

周安装

42

GitHub Stars

2

下载量

349
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/wpf-ui-components-skills --skill syncfusion-wpf-wizard-control

简介

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

  • 适合围绕仓库状态、代码变更或协作事项进行信息整理。
  • 可结合来源仓库和 README 进一步核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 注意避免在不具备相应权限时执行写回或批量操作。syncfusion-wpf-wizard-control 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion WPF WizardControl

WizardControl is Syncfusion's WPF wizard UI, modelled after the familiar installation wizard pattern. It hosts one or more WizardPage items and automatically manages Back/Next/Finish/Cancel navigation. Each page's type, banner, and button states are independently configurable. Pages can be added declaratively or bound from a data source.

Assemblies required:

  • Syncfusion.Shared.WPF
  • Syncfusion.Tools.WPF

Namespace: Syncfusion.Windows.Tools.Controls XAML schema: http://schemas.syncfusion.com/wpf


When to Use This Skill

  • Creating a multi-step wizard UI (setup, onboarding, configuration, checkout)
  • Adding and configuring WizardPage items inside WizardControl
  • Controlling which navigation buttons appear or are enabled per page
  • Implementing non-linear page flow (skip steps, branch on user input)
  • Binding wizard pages dynamically from a collection via ItemsSource
  • Customizing banner images, banner colors, and page headers
  • Applying themes or customizing the wizard's visual appearance

Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Assembly and NuGet setup
  • Adding WizardControl via designer, XAML, or C#
  • Adding multiple WizardPages
  • Theme support overview

Page Types & Navigation Buttons

📄 Read: references/page-types-and-navigation.md

  • PageType enum: Blank, Interior, Exterior
  • Enabling/disabling Back, Next, Finish, Cancel buttons
  • Showing/hiding navigation buttons
  • Custom button label text
  • FinishButtonClosesWindow / CancelButtonCancelsWindow

Interactive Features

📄 Read: references/interactive-features.md

  • Populating pages declaratively vs. via ItemsSource data binding
  • ItemContainerStyle and ItemTemplate for bound pages
  • SelectedWizardPage — programmatic page selection
  • Title and Description on WizardPage
  • NextPage / PreviousPage for non-linear navigation
  • Next event handler

Layout & Appearance

📄 Read: references/layout-and-appearance.md

  • InteriorPageHeaderMinHeight
  • BannerBackground color
  • BannerImage on WizardPage
  • ExteriorPageBannerImageMinWidth
  • Applying built-in themes via SfSkinManager
  • Custom themes via Theme Studio

Quick Start

Minimal XAML Setup

<Window xmlns:syncfusion="http://schemas.syncfusion.com/wpf" ...>
    <Grid>
        <syncfusion:WizardControl Name="wizard"
                                  FinishButtonClosesWindow="True"
                                  CancelButtonCancelsWindow="True">
            <syncfusion:WizardPage Title="Welcome"
                                   Description="Introduction to the setup process."
                                   PageType="Exterior"
                                   BannerImage="Images/banner.png"/>
            <syncfusion:WizardPage Title="Configuration"
                                   Description="Configure your settings."
                                   PageType="Interior"/>
            <syncfusion:WizardPage Title="Finish"
                                   Description="Setup is complete."
                                   PageType="Exterior"/>
        </syncfusion:WizardControl>
    </Grid>
</Window>

Minimal C# Setup

using Syncfusion.Windows.Tools.Controls;

WizardControl wizard = new WizardControl();
wizard.FinishButtonClosesWindow = true;
wizard.CancelButtonCancelsWindow = true;

WizardPage page1 = new WizardPage { Title = "Welcome",       PageType = WizardPageType.Exterior };
WizardPage page2 = new WizardPage { Title = "Configuration", PageType = WizardPageType.Interior };
WizardPage page3 = new WizardPage { Title = "Finish",        PageType = WizardPageType.Exterior };

wizard.Items.Add(page1);
wizard.Items.Add(page2);
wizard.Items.Add(page3);

this.Content = wizard;

Common Patterns

Control Navigation Button Visibility Per Page

<!-- First page: hide Back, show Next -->
<syncfusion:WizardPage Title="Step 1" BackVisible="False" NextVisible="True" FinishVisible="False"/>

<!-- Middle page: show Back and Next -->
<syncfusion:WizardPage Title="Step 2" BackVisible="True" NextVisible="True" FinishVisible="False"/>

<!-- Last page: show Back and Finish, hide Next -->
<syncfusion:WizardPage Title="Step 3" BackVisible="True" NextVisible="False" FinishVisible="True"/>

Non-Linear Navigation (Skip a Step)

<syncfusion:WizardControl Name="wizard">
    <syncfusion:WizardPage x:Name="step1" Title="Step 1"
                           NextPage="{Binding ElementName=step3}"/>
    <syncfusion:WizardPage x:Name="step2" Title="Step 2"/>
    <syncfusion:WizardPage x:Name="step3" Title="Step 3"
                           PreviousPage="{Binding ElementName=step1}"/>
</syncfusion:WizardControl>

Handle Next Button Click

<syncfusion:WizardControl Next="Wizard_Next" ...>
private void Wizard_Next(object sender, RoutedEventArgs e)
{
    var wiz = (WizardControl)sender;
    // Validate current page before allowing navigation
    if (!ValidateCurrentPage())
        e.Handled = true;  // Cancel navigation
}

Key Properties

WizardControl Properties

PropertyTypeDescription
SelectedWizardPageWizardPageCurrently displayed page
ItemsSourceIEnumerableBind pages from a collection
ItemTemplateDataTemplateTemplate for bound page content
ItemContainerStyleStyleStyle applied to each WizardPage container
BackEnabledboolEnable/disable Back button globally
NextEnabledboolEnable/disable Next button globally
FinishEnabledboolEnable/disable Finish button globally
CancelEnabledboolEnable/disable Cancel button globally
BackVisibleboolShow/hide Back button globally
NextVisibleboolShow/hide Next button globally
FinishVisibleboolShow/hide Finish button globally
HelpVisibleboolShow/hide Help button globally
CancelVisibleboolShow/hide Cancel button globally
BackTextstringCustom label for Back button
NextTextstringCustom label for Next button
FinishTextstringCustom label for Finish button
HelpTextstringCustom label for Help button
CancelTextstringCustom label for Cancel button
FinishButtonClosesWindowboolClose window on Finish click
CancelButtonCancelsWindowboolClose window on Cancel click
InteriorPageHeaderMinHeightdoubleMin header height for Interior pages
ExteriorPageBannerImageMinWidthdoubleMin banner image width for Exterior pages

WizardPage Properties

PropertyTypeDescription
TitlestringPage title shown in header
DescriptionstringPage description shown in header
PageTypeWizardPageTypeBlank, Interior, or Exterior
BannerImageImageSourceBanner image for the page
BannerBackgroundBrushBanner area background color
NextPageWizardPageOverride the default next page
PreviousPageWizardPageOverride the default previous page
BackEnabledboolEnable/disable Back on this page
NextEnabledboolEnable/disable Next on this page
FinishEnabledboolEnable/disable Finish on this page
CancelEnabledboolEnable/disable Cancel on this page
BackVisibleboolShow/hide Back on this page
NextVisibleboolShow/hide Next on this page
FinishVisibleboolShow/hide Finish on this page
HelpVisibleboolShow/hide Help on this page
CancelVisibleboolShow/hide Cancel on this page

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.79%
按下载量换算132

Claude

29.55%
按下载量换算103

Cursor

18.85%
按下载量换算66

Gemini CLI

9.11%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills