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

syncfusion-winforms-messagebox同步融合 winforms 消息框

Agent Skill

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

总安装

654

周安装

27

GitHub Stars

公开资料未说明

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

增强型消息对话框组件,提供丰富样式选项与异步回调处理能力。

  • 适用于警告提示、确认操作或进度反馈等用户交互阻断场景。syncfusion-winforms-messagebox 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 技能支持模态与非模态两种模式,适配不同业务流程中断需求。
  • 长时间等待任务应搭配进度条使用,避免用户误判程序卡死。
  • 国际化项目中需分离文本内容与样式定义,便于后期翻译维护。

SKILL.md

Implementing Message Boxes (MessageBoxAdv)

An advanced message box control for Windows Forms that provides themed dialogs, custom icons, expandable details, localization support, and complete appearance customization.

When to Use This Skill

Use this skill when you need to:

  • Modal Dialogs: Display messages, confirmations, warnings, or errors in modal windows
  • Themed Message Boxes: Apply Office 2007/2010/2013/2016 or Metro themes to match application style
  • Custom Icons: Show built-in or custom icons in message boxes
  • Confirmation Dialogs: Implement Yes/No, OK/Cancel, or Retry/Cancel user prompts
  • Details View: Provide expandable detail panes for additional information
  • Multilanguage Dialogs: Localize button text and messages for international applications
  • Resizable Dialogs: Allow users to resize message boxes at runtime
  • Right-to-Left Support: Display message boxes in RTL layout for Arabic/Hebrew applications

Component Overview

The MessageBoxAdv is an enhanced replacement for the standard Windows Forms MessageBox that provides:

  • Static Show() method pattern (no instantiation needed)
  • Multiple button combinations (Ok, OkCancel, YesNo, YesNoCancel, RetryCancel, AbortRetryIgnore)
  • Built-in and custom icon support
  • Six visual themes with multiple color schemes (15+ style variations)
  • Expandable details pane for additional information
  • Complete localization support via ILocalizationProvider
  • Runtime resizing with gripper
  • Right-to-left layout support

Key Capabilities:

  • MessageBoxAdv.Show() static method for displaying dialogs
  • DialogResult return value for capturing user response
  • MessageBoxStyle property for theme selection
  • MetroColorTable for Metro theme customization
  • CanResize property for runtime size adjustment
  • Details view with expandable/collapsible detail text
  • Custom icon loading with size specification

Return Values: MessageBoxAdv returns DialogResult enum values: OK, Cancel, Yes, No, Retry, Abort, Ignore, None

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

When to read: Starting new implementation, setting up dependencies, first-time usage, basic Show() method

Topics covered:

  • Assembly deployment (Syncfusion.Shared.Base.dll)
  • NuGet package installation (Syncfusion.Shared.Base)
  • Namespace requirements (Syncfusion.Windows.Forms)
  • Static Show() method usage pattern
  • Basic message box examples
  • Show() method overloads
  • DialogResult return value handling
  • Simple alert and confirmation examples

Button Parameters and Features

📄 Read: references/button-parameters.md

When to read: Configuring button combinations, adding icons, enabling features (RTL, details, resizing)

Topics covered:

  • Caption bar text parameter
  • Message text parameter
  • Button combinations (MessageBoxButtons enum: OK, OKCancel, YesNo, YesNoCancel, RetryCancel, AbortRetryIgnore)
  • Icon support (MessageBoxIcon enum: Asterisk, Error, Exclamation, Hand, Information, None, Question, Stop, Warning)
  • Custom icon loading (Image parameter with Size)
  • Right-to-left support (RightToLeft property)
  • Details view (expandable/collapsible detail pane with "Details" button)
  • Resizing support (CanResize property with gripper at bottom-right)
  • Complete examples for each button type
  • Icon positioning and sizing

Visual Styles and Themes

📄 Read: references/visual-styles.md

When to read: Applying themes, matching application style, using Office color schemes

Topics covered:

  • MessageBoxStyle property (Default, Office2007, Office2010, Metro, Office2013, Office2016)
  • Default theme
  • Office2007 theme with color schemes (Black, Blue, Silver, Managed)
  • Office2010 theme with color schemes (Black, Blue, Silver, Managed)
  • Metro theme (modern flat design)
  • Office2013 theme (DarkGray, LightGray, White)
  • Office2016 theme (Colorful, White, DarkGray)
  • Theme enumeration usage (Office2007Theme, Office2010Theme, Office2013Theme, Office2016Theme)
  • Managed color customization (Office2007Colors.ApplyManagedColors, Office2010Colors.ApplyManagedColors)
  • Complete examples for all themes and color schemes

Metro Theme Customization

📄 Read: references/metro-customization.md

When to read: Customizing Metro theme colors, branding message boxes, matching corporate colors

Topics covered:

  • MetroColorTable class overview
  • ForeColor property (message text color)
  • BackColor property (dialog background)
  • BorderColor property (dialog border)
  • CaptionBarColor property (title bar background)
  • CaptionForeColor property (title bar text color)
  • Button background colors (OKButtonBackColor, YesButtonBackColor, NoButtonBackColor, CancelButtonBackColor, RetryButtonBackColor, AbortButtonBackColor, IgnoreButtonBackColor)
  • Button foreground colors (button text colors)
  • CloseButtonColor and CloseButtonHoverColor
  • Complete Metro customization examples
  • Color coordination best practices
  • Custom branded message box creation

Localization Support

📄 Read: references/localization.md

When to read: Implementing multilanguage applications, localizing button text, international deployments

Topics covered:

  • Localization overview and workflow
  • ILocalizationProvider interface implementation
  • LocalizationProvider.Provider property initialization
  • GetLocalizedString() method implementation
  • ResourceIdentifiers class constants (Yes, No, OK, Cancel, Retry, Abort, Ignore, Details, Close)
  • Culture-specific string mapping
  • Initialization before InitializeComponent
  • Switch statement pattern for resource lookup
  • Complete localization examples (German, Spanish, French)
  • Best practices for multilanguage support
  • Custom Localizer class creation

Quick Start Example

Basic Message Box with Metro Theme

C#:

using Syncfusion.Windows.Forms;

// Set Metro theme globally
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;

// Display simple message box
MessageBoxAdv.Show(this, "File saved successfully!", "Success",
    MessageBoxButtons.OK, MessageBoxIcon.Information);

// Confirmation dialog with Yes/No
DialogResult result = MessageBoxAdv.Show(this, "Save changes?", "File Modified",
    MessageBoxButtons.YesNo, MessageBoxIcon.Question);

if (result == DialogResult.Yes)
{
    // Save changes
}

VB.NET:

Imports Syncfusion.Windows.Forms

' Set Metro theme globally
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro

' Display simple message box
MessageBoxAdv.Show(Me, "File saved successfully!", "Success", _
    MessageBoxButtons.OK, MessageBoxIcon.Information)

' Confirmation dialog with Yes/No
Dim result As DialogResult = MessageBoxAdv.Show(Me, "Save changes?", "File Modified", _
    MessageBoxButtons.YesNo, MessageBoxIcon.Question)

If result = DialogResult.Yes Then
    ' Save changes
End If

Common Patterns

Pattern 1: File Save Confirmation Dialog

Scenario: Prompt user to save changes before closing

C#:

using Syncfusion.Windows.Forms;

// Set Office2016 Colorful theme
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Office2016;
MessageBoxAdv.Office2016Theme = Office2016Theme.Colorful;

// Show confirmation with YesNoCancel
DialogResult result = MessageBoxAdv.Show(
    this,
    "Do you want to save changes to Document1.txt?",
    "Unsaved Changes",
    MessageBoxButtons.YesNoCancel,
    MessageBoxIcon.Question
);

switch (result)
{
    case DialogResult.Yes:
        SaveDocument();
        CloseDocument();
        break;
    case DialogResult.No:
        CloseDocument();
        break;
    case DialogResult.Cancel:
        // Do nothing, stay in editor
        break;
}

Pattern 2: Error Message with Custom Icon and Details View

Scenario: Display error with detailed stack trace or log information

C#:

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

// Load custom error icon
Image customIcon = Image.FromFile("error_icon.png");

// Set theme
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;

// Show with details view
MessageBoxAdv.Show(
    this,
    "Failed to connect to database server.",
    "Connection Error",
    MessageBoxButtons.RetryCancel,
    customIcon,
    new Size(48, 48),
    "Error Details:\n" +
    "Server: db.company.com\n" +
    "Port: 1433\n" +
    "Timeout: Connection timeout after 30 seconds\n" +
    "Stack Trace: at System.Data.SqlClient.SqlConnection.Open()"
);

Pattern 3: Localized Message Box (German)

Scenario: Display message box with German button text and messages

C#:

using Syncfusion.Windows.Forms;
using System.Globalization;

// Implement custom localizer
public class GermanLocalizer : ILocalizationProvider
{
    public string GetLocalizedString(CultureInfo culture, string name, object obj)
    {
        switch (name)
        {
            case ResourceIdentifiers.Yes:
                return "Ja";
            case ResourceIdentifiers.No:
                return "Nein";
            case ResourceIdentifiers.OK:
                return "OK";
            case ResourceIdentifiers.Cancel:
                return "Abbrechen";
            case ResourceIdentifiers.Retry:
                return "Wiederholen";
            case ResourceIdentifiers.Abort:
                return "Abbrechen";
            case ResourceIdentifiers.Ignore:
                return "Ignorieren";
            case ResourceIdentifiers.Details:
                return "Details";
            default:
                return string.Empty;
        }
    }
}

// Initialize localizer before showing message box
LocalizationProvider.Provider = new GermanLocalizer();

// Show localized message box
MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Office2013;
MessageBoxAdv.Office2013Theme = Office2013Theme.White;

MessageBoxAdv.Show(
    this,
    "Möchten Sie die Änderungen speichern?",
    "Datei geändert",
    MessageBoxButtons.YesNoCancel,
    MessageBoxIcon.Question
);

Key Properties

Static Properties

PropertyTypeDescription
MessageBoxStyleMessageBoxAdv.StyleSets theme: Default, Office2007, Office2010, Metro, Office2013, Office2016
Office2007ThemeOffice2007ThemeColor scheme for Office2007: Black, Blue, Silver, Managed
Office2010ThemeOffice2010ThemeColor scheme for Office2010: Black, Blue, Silver, Managed
Office2013ThemeOffice2013ThemeColor scheme for Office2013: DarkGray, LightGray, White
Office2016ThemeOffice2016ThemeColor scheme for Office2016: Colorful, White, DarkGray
MetroColorTableMessageBoxAdvMetroColorTableMetro theme color customization
RightToLeftRightToLeftEnable RTL layout: Yes, No
CanResizeboolEnable runtime resizing with gripper

Show() Method Parameters

ParameterTypeDescription
ownerIWin32WindowParent window (typically this or form instance)
textstringMessage text to display
captionstringTitle bar text
buttonsMessageBoxButtonsButton combination: OK, OKCancel, YesNo, YesNoCancel, RetryCancel, AbortRetryIgnore
iconMessageBoxIconBuilt-in icon: Asterisk, Error, Exclamation, Hand, Information, None, Question, Stop, Warning
iconImageCustom icon image
iconSizeSizeCustom icon size (width, height)
detailsstringExpandable detail text (shows "Details" button)

Return Value

Type: DialogResult

Values: OK, Cancel, Yes, No, Retry, Abort, Ignore, None


Common Use Cases

1. Application Exit Confirmation

User tries to close application with unsaved work:

DialogResult result = MessageBoxAdv.Show(this,
    "You have unsaved changes. Exit anyway?",
    "Confirm Exit",
    MessageBoxButtons.YesNo,
    MessageBoxIcon.Warning);

if (result == DialogResult.Yes)
{
    Application.Exit();
}

2. File Operation Errors

Display error with retry option:

DialogResult result = MessageBoxAdv.Show(this,
    "File is locked by another process.",
    "File Access Error",
    MessageBoxButtons.RetryCancel,
    MessageBoxIcon.Error);

if (result == DialogResult.Retry)
{
    AttemptFileAccess();
}

3. Information Messages

Simple notification without choices:

MessageBoxAdv.Show(this,
    "Backup completed successfully!",
    "Backup Complete",
    MessageBoxButtons.OK,
    MessageBoxIcon.Information);

4. Delete Confirmation

Confirm destructive action:

DialogResult result = MessageBoxAdv.Show(this,
    "Are you sure you want to delete this record? This cannot be undone.",
    "Confirm Delete",
    MessageBoxButtons.YesNo,
    MessageBoxIcon.Exclamation);

if (result == DialogResult.Yes)
{
    DeleteRecord();
}

5. Themed Corporate Dialogs

Match message box to corporate branding:

MessageBoxAdv.MessageBoxStyle = MessageBoxAdv.Style.Metro;
MessageBoxAdv.MetroColorTable.CaptionBarColor = Color.FromArgb(0, 120, 215); // Corporate blue
MessageBoxAdv.MetroColorTable.YesButtonBackColor = Color.FromArgb(0, 120, 215);
MessageBoxAdv.MetroColorTable.NoButtonBackColor = Color.FromArgb(82, 82, 82);

MessageBoxAdv.Show(this,
    "Upload to cloud storage?",
    "Company Portal",
    MessageBoxButtons.YesNo,
    MessageBoxIcon.Question);

Additional Resources

Assembly: Syncfusion.Shared.Base.dll Namespace: Syncfusion.Windows.Forms NuGet Package: Syncfusion.Shared.Base Minimum.NET Framework: 4.5

Key Classes:

  • MessageBoxAdv - Main static class for showing message boxes
  • MessageBoxAdvMetroColorTable - Metro theme color customization
  • ILocalizationProvider - Interface for localization
  • LocalizationProvider - Localization provider registration
  • ResourceIdentifiers - Resource string constants for localization

Related Skills:

  • Form styling and theming
  • Dialog management
  • User input validation
  • Error handling patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.44%
按下载量换算76

Claude

31.8%
按下载量换算68

Cursor

19.07%
按下载量换算41

Gemini CLI

8.75%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills