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

syncfusion-winforms-wizard-controlSynfusion Winforms 向导控件

Agent Skill

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

总安装

659

周安装

28

GitHub Stars

公开资料未说明

下载量

231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Implementing WizardControl in Windows Forms

This skill guides the implementation of the Syncfusion WizardControl component in Windows Forms applications. The WizardControl provides a rich, interactive interface for breaking complex tasks into simple sequential steps with guided navigation.

When to Use This Skill

Use this skill when users need to:

  • Create multi-step installation or setup wizards
  • Implement sequential forms with Back/Next navigation
  • Build guided workflows for complex data entry
  • Design step-by-step configuration interfaces
  • Create onboarding experiences with multiple pages
  • Implement wizard-style dialogs for task completion
  • Guide users through categorized data collection
  • Build registration or checkout processes with progress tracking

Component Overview

The WizardControl is a multi-page container that guides users through sequential tasks with automatic navigation button management.

Key Capabilities:

  • Multi-page management - WizardControlPage collection with flexible ordering
  • Navigation buttons - Back, Next, Cancel, Finish, Help with per-page visibility control
  • Banner panel - Header with title, description, and image for context
  • Page validation - ValidatePage event for data validation before navigation
  • Design-time support - Smart tags, collection editor, visual page navigation
  • Flexible layout - FullPage mode, custom button placement, BannerPanel customization
  • Event system - Page lifecycle events, button click events, navigation events
  • Theming support - Full appearance customization with Style property
  • RTL support - Right-to-left layout for international applications

Assembly: Syncfusion.Tools.Windows.dll Namespace: Syncfusion.Windows.Forms.Tools Dependencies: 6 assemblies (Grid.Base, Grid.Windows, Shared.Base, Shared.Windows, Tools.Base, Tools.Windows)

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

When to read:

  • Setting up WizardControl for the first time
  • Understanding assembly requirements and installation
  • Adding control via designer or code
  • Creating basic wizard with multiple pages
  • Configuring WizardContainer and WizardControlPages
  • Troubleshooting setup issues

Wizard Pages

📄 Read: references/wizard-pages.md

When to read:

  • Creating and managing WizardControlPage collection
  • Setting page titles and descriptions
  • Configuring FullPage property to hide banner
  • Reordering pages using collection editor or properties
  • Setting NextPage and PreviousPage for custom sequences
  • Accessing pages at design time and runtime
  • Building multi-page wizards with dynamic content

Navigation Buttons

📄 Read: references/navigation-buttons.md

When to read:

  • Controlling button visibility (BackVisible, NextVisible, etc.)
  • Enabling/disabling buttons per page
  • Adding Finish button to final page
  • Creating custom buttons in wizard
  • Reordering button sequence with GridBagLayout
  • Customizing button appearance (FlatStyle, colors, images)
  • Accessing BackButton, NextButton, CancelButton properties

Banner Configuration

📄 Read: references/banner-configuration.md

When to read:

  • Configuring BannerPanel with gradient background
  • Setting Banner property for header image
  • Customizing Title and Description labels
  • Using AutoLayoutBanner/Title/Description properties
  • Adding custom controls to banner area
  • Styling title and description text
  • Creating branded wizard headers

Page Validation and Events

📄 Read: references/page-validation-events.md

When to read:

  • Implementing page validation with ValidatePage event
  • Handling navigation events (BeforeNext, BeforeBack, BeforeFinish)
  • Responding to button clicks (BackClick, NextClick, etc.)
  • Using PageLoad event for page initialization
  • Implementing custom page sequences
  • Canceling navigation based on validation
  • Using BackButtonCausesValidation property

Appearance Customization

📄 Read: references/appearance-customization.md

When to read:

  • Customizing wizard and page backgrounds
  • Setting fonts and colors for text
  • Configuring border styles (Fixed3D, FixedSingle)
  • Styling BannerPanel with gradients
  • Applying themes with Style property
  • Creating light/dark mode wizards
  • Matching application branding

Design-Time Features

📄 Read: references/design-time-features.md

When to read:

  • Using smart tags for wizard operations
  • Adding/removing pages at design time
  • Navigating between pages in designer
  • Using collection editor for page management
  • Configuring properties in Property Grid
  • Understanding SelectedWizardPage property
  • Working with CardLayout property

Quick Start Example

Basic Installation Wizard

C#:

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

public partial class InstallationWizard : Form
{
    private WizardControl wizardControl1;
    private WizardControlPage welcomePage;
    private WizardControlPage licensePage;
    private WizardControlPage installPage;
    private WizardControlPage finishPage;

    public InstallationWizard()
    {
        InitializeComponent();
        CreateWizard();
    }

    private void CreateWizard()
    {
        // Create wizard control
        wizardControl1 = new WizardControl
        {
            Dock = DockStyle.Fill,
            Style = Syncfusion.Windows.Forms.Tools.Wizard.Style.Metro
        };

        // Create pages
        welcomePage = new WizardControlPage
        {
            Title = "Welcome",
            Description = "Welcome to the Installation Wizard",
            BackVisible = false  // Hide Back on first page
        };

        licensePage = new WizardControlPage
        {
            Title = "License Agreement",
            Description = "Please read and accept the license terms"
        };

        installPage = new WizardControlPage
        {
            Title = "Installing",
            Description = "Please wait while files are being installed"
        };

        finishPage = new WizardControlPage
        {
            Title = "Completed",
            Description = "Installation completed successfully",
            NextVisible = false,
            CancelVisible = false,
            FinishVisible = true
        };

        // Add pages to wizard
        wizardControl1.WizardPages = new WizardControlPage[]
        {
            welcomePage,
            licensePage,
            installPage,
            finishPage
        };

        // Add wizard to form
        this.Controls.Add(wizardControl1);
        this.Text = "Setup Wizard";
        this.Size = new Size(600, 450);
    }
}

VB.NET:

Imports System
Imports System.Drawing
Imports System.Windows.Forms
Imports Syncfusion.Windows.Forms.Tools

Public Partial Class InstallationWizard
    Inherits Form

    Private wizardControl1 As WizardControl
    Private welcomePage As WizardControlPage
    Private licensePage As WizardControlPage
    Private installPage As WizardControlPage
    Private finishPage As WizardControlPage

    Public Sub New()
        InitializeComponent()
        CreateWizard()
    End Sub

    Private Sub CreateWizard()
        ' Create wizard control
        wizardControl1 = New WizardControl With {
            .Dock = DockStyle.Fill,
            .Style = Syncfusion.Windows.Forms.Tools.Wizard.Style.Metro
        }

        ' Create pages
        welcomePage = New WizardControlPage With {
            .Title = "Welcome",
            .Description = "Welcome to the Installation Wizard",
            .BackVisible = False
        }

        licensePage = New WizardControlPage With {
            .Title = "License Agreement",
            .Description = "Please read and accept the license terms"
        }

        installPage = New WizardControlPage With {
            .Title = "Installing",
            .Description = "Please wait while files are being installed"
        }

        finishPage = New WizardControlPage With {
            .Title = "Completed",
            .Description = "Installation completed successfully",
            .NextVisible = False,
            .CancelVisible = False,
            .FinishVisible = True
        }

        ' Add pages to wizard
        wizardControl1.WizardPages = New WizardControlPage() {
            welcomePage,
            licensePage,
            installPage,
            finishPage
        }

        ' Add wizard to form
        Me.Controls.Add(wizardControl1)
        Me.Text = "Setup Wizard"
        Me.Size = New Size(600, 450)
    End Sub
End Class

Common Patterns

Pattern 1: Wizard with Validation

Validate data before allowing navigation to next page:

C#:

public partial class RegistrationWizard : Form
{
    private WizardControlPage personalInfoPage;
    private TextBox txtName;
    private TextBox txtEmail;

    private void SetupWizard()
    {
        personalInfoPage = new WizardControlPage
        {
            Title = "Personal Information",
            Description = "Please enter your details"
        };

        // Add controls to page
        txtName = new TextBox { Location = new Point(20, 20), Width = 300 };
        txtEmail = new TextBox { Location = new Point(20, 60), Width = 300 };

        personalInfoPage.Controls.Add(new Label
        {
            Text = "Name:",
            Location = new Point(20, 0)
        });
        personalInfoPage.Controls.Add(txtName);
        personalInfoPage.Controls.Add(new Label
        {
            Text = "Email:",
            Location = new Point(20, 40)
        });
        personalInfoPage.Controls.Add(txtEmail);

        // Subscribe to validation event
        personalInfoPage.ValidatePage += PersonalInfoPage_ValidatePage;
    }

    private void PersonalInfoPage_ValidatePage(object sender,
        System.ComponentModel.CancelEventArgs e)
    {
        // Validate name
        if (string.IsNullOrWhiteSpace(txtName.Text))
        {
            MessageBox.Show("Please enter your name.", "Validation Error",
                MessageBoxButtons.OK, MessageBoxIcon.Warning);
            e.Cancel = true;
            txtName.Focus();
            return;
        }

        // Validate email
        if (string.IsNullOrWhiteSpace(txtEmail.Text) ||
            !txtEmail.Text.Contains("@"))
        {
            MessageBox.Show("Please enter a valid email address.",
                "Validation Error",
                MessageBoxButtons.OK, MessageBoxIcon.Warning);
            e.Cancel = true;
            txtEmail.Focus();
            return;
        }
    }
}

Pattern 2: Dynamic Page Sequence

Control page flow based on user selections:

C#:

public partial class ConfigurationWizard : Form
{
    private WizardControlPage typePage;
    private WizardControlPage basicSettingsPage;
    private WizardControlPage advancedSettingsPage;
    private RadioButton rbBasic;
    private RadioButton rbAdvanced;

    private void SetupDynamicWizard()
    {
        typePage = new WizardControlPage
        {
            Title = "Configuration Type",
            Description = "Choose your configuration level"
        };

        rbBasic = new RadioButton
        {
            Text = "Basic Configuration",
            Location = new Point(20, 20),
            Checked = true
        };
        rbAdvanced = new RadioButton
        {
            Text = "Advanced Configuration",
            Location = new Point(20, 50)
        };

        typePage.Controls.Add(rbBasic);
        typePage.Controls.Add(rbAdvanced);

        basicSettingsPage = new WizardControlPage
        {
            Title = "Basic Settings",
            Description = "Configure basic options"
        };

        advancedSettingsPage = new WizardControlPage
        {
            Title = "Advanced Settings",
            Description = "Configure advanced options"
        };

        // Set dynamic page sequence
        typePage.NextClick += TypePage_NextClick;
    }

    private void TypePage_NextClick(object sender, EventArgs e)
    {
        // Dynamically set next page based on selection
        if (rbBasic.Checked)
        {
            typePage.NextPage = basicSettingsPage;
        }
        else
        {
            typePage.NextPage = advancedSettingsPage;
        }
    }
}

Pattern 3: Wizard with Progress Tracking

Show current step progress in banner:

C#:

public partial class DataImportWizard : Form
{
    private Label lblProgress;

    private void SetupProgressWizard()
    {
        // Create progress label in banner
        lblProgress = new Label
        {
            Text = "Step 1 of 4",
            Location = new Point(400, 10),
            AutoSize = true,
            Font = new Font("Arial", 9, FontStyle.Bold)
        };

        // Add to wizard's banner panel (assuming gradientPanel1 is banner)
        wizardControl1.BannerPanel.Controls.Add(lblProgress);

        // Subscribe to page changes
        wizardControl1.BeforePageSelect += WizardControl1_BeforePageSelect;
    }

    private void WizardControl1_BeforePageSelect(object sender, EventArgs e)
    {
        // Update progress based on current page
        int currentIndex = wizardControl1.WizardPages.IndexOf(
            wizardControl1.SelectedWizardPage);
        int totalPages = wizardControl1.WizardPages.Count;

        lblProgress.Text = $"Step {currentIndex + 1} of {totalPages}";
    }
}

Key Properties

WizardControl Properties

PropertyTypeDescription
WizardPagesWizardControlPage[]Collection of wizard pages
SelectedWizardPageWizardControlPageCurrently displayed page
BannerPanelPanelPanel containing banner controls
BannerControlPicture box for banner image
TitleLabelLabel displaying page title
DescriptionLabelLabel displaying page description
BackButtonButtonBack navigation button
NextButtonButtonNext navigation button
CancelButtonButtonCancel button
FinishButtonButtonFinish button
HelpButtonButtonHelp button
StyleWizard.StyleVisual theme (Default, Metro, Office)
BackButtonCausesValidationboolWhether Back button triggers validation
AutoLayoutBannerboolAutomatically layout banner controls
AutoLayoutTitleboolAutomatically layout title label
AutoLayoutDescriptionboolAutomatically layout description label

WizardControlPage Properties

PropertyTypeDescription
TitlestringPage title text
DescriptionstringPage description text
BackVisibleboolBack button visibility
NextVisibleboolNext button visibility
CancelVisibleboolCancel button visibility
FinishVisibleboolFinish button visibility
HelpVisibleboolHelp button visibility
BackEnabledboolBack button enabled state
NextEnabledboolNext button enabled state
CancelEnabledboolCancel button enabled state
FinishEnabledboolFinish button enabled state
HelpEnabledboolHelp button enabled state
FullPageboolHide banner for full-page content
NextPageWizardPageCustom next page override
PreviousPageWizardPageCustom previous page override
CancelOverFinishboolPosition cancel over finish button
LayoutNamestringUnique identifier for page

Common Use Cases

  1. Installation Wizards - Multi-step software installation with welcome, license, options, install, and finish pages
  2. Setup Assistants - Application configuration wizards for first-run setup or preferences
  3. Registration Forms - Step-by-step user registration with personal info, account details, preferences, and confirmation
  4. Data Import Wizards - Guided data import with source selection, mapping, validation, and import execution
  5. Report Generators - Report creation wizards with parameter selection, formatting, preview, and export
  6. Configuration Managers - Complex configuration interfaces broken into logical categories with navigation
  7. Checkout Processes - E-commerce checkout flows with cart, shipping, payment, and confirmation pages
  8. Onboarding Experiences - New user onboarding with tutorial steps, feature introduction, and setup completion

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.59%
按下载量换算85

Claude

28%
按下载量换算65

Cursor

18.24%
按下载量换算42

Gemini CLI

8.32%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills