Token导航 LogoToken导航TokenDH.com
运维和基础设施只读github未标认证来源可访问许可证需确认审计通过

syncfusion-winforms-splash-panelSynfusion winforms 启动面板

Agent Skill

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

总安装

674

周安装

27

GitHub Stars

公开资料未说明

下载量

218
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

Syncfusion WinForms 启动面板控件,作为后台任务加载时的遮罩层与状态提示。

  • 适用于数据同步、缓存预热、配置读取等耗时操作的等待反馈。
  • 可自定义透明度、加载动画、文字说明及取消按钮交互。
  • 使用前请检查 Syncfusion 版本是否支持此面板类型,部分样式需额外资源文件。
  • 注意与其他模态窗口的堆叠顺序,防止被遮挡或误关闭关键进程。

SKILL.md

Windows Forms Splash Panel (SplashPanel)

The Syncfusion Windows Forms SplashPanel control enables creation of custom splash screens that display during application startup or as non-obtrusive notification windows. It supports animations, child controls, timed auto-close, and flexible positioning.

When to Use This Skill

Use this skill when you need to:

  • Display splash screens during application startup or loading
  • Show progress information or branding during initialization
  • Create notification popups similar to MSN Messenger or email notifications
  • Implement loading indicators with custom content and animations
  • Show timed messages that auto-close after a specified duration
  • Display modal dialogs with custom splash content
  • Add animated transitions (slide, fade, marquee) to splash windows
  • Position splash windows at specific desktop locations (center, corners, system tray area, custom)
  • Include child controls (buttons, labels, images) in splash screens
  • Handle splash lifecycle events (before display, displayed, closing, closed)

Component Overview

Key Features:

  • Animation styles: Slide (horizontal/vertical/directional), Fade, Marquee
  • Desktop alignment: Center, SystemTray, corners (LeftTop, LeftBottom, RightTop, RightBottom), Custom
  • Display methods: ShowSplash (modeless), ShowDialogSplash (modal), HideSplash
  • Auto-close timer: Configurable interval or manual control (-1 for no auto-close)
  • Child controls: Add any Windows Forms controls to the splash panel
  • Appearance: Gradient backgrounds, images, borders, transparency
  • Behavior: AllowMove, AllowResize, CloseOnClick options
  • Events: BeforeSplash, SplashDisplayed, SplashClosing, SplashClosed, mouse events

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

Read this reference when you need to:

  • Install SplashPanel via NuGet or configure in designer
  • Add SplashPanel to a Windows Forms project
  • Create a SplashPanel instance programmatically
  • Add child controls to the splash panel
  • Call ShowSplash() method for basic display
  • Understand assembly requirements and deployment

Display Methods

📄 Read: references/display-methods.md

Read this reference when you need to:

  • Show splash panel with ShowSplash() method and parameters
  • Hide splash panel with HideSplash() method
  • Display as modal dialog with ShowDialogSplash()
  • Check if splash is currently showing with IsShowing()
  • Configure TimerInterval for auto-close duration
  • Set splash location and owner form
  • Display splash in taskbar with custom icon/text

Animation and Appearance

📄 Read: references/animation-appearance.md

Read this reference when you need to:

  • Enable and configure animation speed
  • Set SlideStyle (Horizontal, Vertical, FadeIn, etc.)
  • Show splash as topmost window
  • Customize background with gradients or images
  • Configure border styles and transparency
  • Set desktop alignment (Center, SystemTray, corners)
  • Enable behavior options (AllowMove, AllowResize, CloseOnClick)
  • Suspend auto-close when mouse is over splash

Slide Transitions

📄 Read: references/slide-transitions.md

Read this reference when you need to:

  • Configure AnimationDirection (Default, LeftToRight, RightToLeft)
  • Implement marquee transitions that traverse the screen
  • Set MarqueeDirection (LeftToRight, RightToLeft, TopToBottom, BottomToTop)
  • Combine slide transitions with desktop alignment
  • Create advanced animation effects

Events

📄 Read: references/events.md

Read this reference when you need to:

  • Handle BeforeSplash event (cancel splash display)
  • Respond to SplashDisplayed event
  • Handle SplashClosing event (cancel closing)
  • Respond to SplashClosed event (get close type)
  • Handle mouse enter/leave events on splash
  • Implement custom logic during splash lifecycle

Quick Start

Basic Splash Screen

using Syncfusion.Windows.Forms.Tools;

// Create splash panel
SplashPanel splashPanel = new SplashPanel();
splashPanel.Size = new Size(400, 300);
splashPanel.DesktopAlignment = SplashAlignment.Center;
splashPanel.TimerInterval = 3000; // Show for 3 seconds
splashPanel.ShowAnimation = true;
splashPanel.SlideStyle = SlideStyle.FadeIn;

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

// Show splash
splashPanel.ShowSplash();

VB.NET:

Imports Syncfusion.Windows.Forms.Tools

' Create splash panel
Dim splashPanel As New SplashPanel()
splashPanel.Size = New Size(400, 300)
splashPanel.DesktopAlignment = SplashAlignment.Center
splashPanel.TimerInterval = 3000 ' Show for 3 seconds
splashPanel.ShowAnimation = True
splashPanel.SlideStyle = SlideStyle.FadeIn

' Add to form
Me.Controls.Add(splashPanel)

' Show splash
splashPanel.ShowSplash()

Common Patterns

Pattern 1: Startup Splash with Branding

// Application startup splash
SplashPanel startupSplash = new SplashPanel();
startupSplash.Size = new Size(500, 350);
startupSplash.BackgroundImage = Image.FromFile("splash_image.png");
startupSplash.DesktopAlignment = SplashAlignment.Center;
startupSplash.TimerInterval = 5000;
startupSplash.ShowAnimation = true;
startupSplash.AnimationSpeed = 20;

// Add label with version info
Label versionLabel = new Label();
versionLabel.Text = "Version 2.0";
versionLabel.Location = new Point(20, 300);
versionLabel.AutoSize = true;
startupSplash.Controls.Add(versionLabel);

this.Controls.Add(startupSplash);
startupSplash.ShowSplash();

Pattern 2: Notification-Style Popup

// Non-obtrusive notification (like MSN Messenger)
SplashPanel notificationPanel = new SplashPanel();
notificationPanel.Size = new Size(300, 100);
notificationPanel.DesktopAlignment = SplashAlignment.RightBottom;
notificationPanel.SlideStyle = SlideStyle.BottomToTop;
notificationPanel.AnimationDirection = AnimationDirection.Default;
notificationPanel.TimerInterval = 5000;
notificationPanel.ShowAnimation = true;
notificationPanel.CloseOnClick = true;
notificationPanel.SuspendAutoCloseWhenMouseOver = true;

// Add notification content
Label messageLabel = new Label();
messageLabel.Text = "New message received!";
messageLabel.Location = new Point(10, 40);
notificationPanel.Controls.Add(messageLabel);

this.Controls.Add(notificationPanel);
notificationPanel.ShowSplash();

Pattern 3: Modal Loading Dialog

// Modal splash dialog that blocks interaction
SplashPanel modalSplash = new SplashPanel();
modalSplash.Size = new Size(400, 200);
modalSplash.TimerInterval = -1; // No auto-close
modalSplash.DesktopAlignment = SplashAlignment.Center;

// Add progress indicator
Label loadingLabel = new Label();
loadingLabel.Text = "Loading, please wait...";
loadingLabel.Location = new Point(120, 90);
loadingLabel.AutoSize = true;
modalSplash.Controls.Add(loadingLabel);

this.Controls.Add(modalSplash);

// Show as modal dialog (blocks until closed)
modalSplash.ShowDialogSplash(this);

Pattern 4: Animated Splash with Gradient

// Splash with gradient background and animation
SplashPanel animatedSplash = new SplashPanel();
animatedSplash.Size = new Size(450, 300);
animatedSplash.BackgroundColor = new BrushInfo(
    GradientStyle.Vertical,
    Color.DarkBlue,
    Color.LightBlue);
animatedSplash.DesktopAlignment = SplashAlignment.Center;
animatedSplash.SlideStyle = SlideStyle.Horizontal;
animatedSplash.ShowAnimation = true;
animatedSplash.AnimationSpeed = 30;
animatedSplash.TimerInterval = 4000;
animatedSplash.ShowAsTopMost = true;

this.Controls.Add(animatedSplash);
animatedSplash.ShowSplash();

Pattern 5: Custom Positioned Splash

// Splash at custom screen location
SplashPanel customSplash = new SplashPanel();
customSplash.Size = new Size(350, 250);
customSplash.DesktopAlignment = SplashAlignment.Custom;
customSplash.TimerInterval = 3000;

// Show at mouse position
Point mousePos = Control.MousePosition;
customSplash.ShowSplash(mousePos, this, false);

Pattern 6: Splash with Lifecycle Events

// Splash with event handlers
SplashPanel eventSplash = new SplashPanel();
eventSplash.Size = new Size(400, 250);
eventSplash.DesktopAlignment = SplashAlignment.Center;
eventSplash.TimerInterval = 5000;

// Subscribe to events
eventSplash.BeforeSplash += (s, e) => {
    Console.WriteLine("About to show splash");
};

eventSplash.SplashDisplayed += (s, e) => {
    Console.WriteLine("Splash is now visible");
};

eventSplash.SplashClosing += (s, e) => {
    Console.WriteLine("Splash is closing");
    // e.Cancel = true; // Uncomment to prevent closing
};

eventSplash.SplashClosed += (s, e) => {
    Console.WriteLine($"Splash closed: {e.SplashCloseType}");
};

this.Controls.Add(eventSplash);
eventSplash.ShowSplash();

Key Properties

PropertyTypeDescription
TimerIntervalintDuration in milliseconds to display splash (-1 for no auto-close)
DesktopAlignmentSplashAlignmentPosition on desktop (Center, SystemTray, corners, Custom)
SlideStyleSlideStyleAnimation style (Horizontal, Vertical, FadeIn, etc.)
AnimationSpeedintSpeed of animation transition (higher = faster)
ShowAnimationboolEnable/disable animation on display
ShowAsTopMostboolDisplay splash as topmost window
BackgroundColorBrushInfoGradient or solid background color
BackgroundImageImageBackground image for splash
AllowMoveboolAllow user to move splash at runtime
AllowResizeboolAllow user to resize splash at runtime
CloseOnClickboolClose splash when user clicks on it
SuspendAutoCloseWhenMouseOverboolSuspend auto-close timer when mouse is over splash
AnimationDirectionAnimationDirectionDirection of slide animation
MarqueeDirectionMarqueeDirectionDirection of marquee transition
BorderStyleBorder3DStyle3D border style for splash
TransparentColorColorTransparent color for background
ShowInTaskbarboolDisplay splash in Windows taskbar
SlideStyleSlideStyleAnimation style. Values include: Slide (basic slide transitions), Horizontal, Vertical, FadeIn, and Marquee (continuous marquee transitions).

Key Methods

MethodDescription
ShowSplash()Display the splash panel
ShowSplash(Point, Form, bool)Display at specific location with owner form
ShowDialogSplash(Form)Display as modal dialog
ShowDialogSplash(Point, Form)Display as modal dialog at specific location
HideSplash()Hide the splash panel
IsShowing()Check if splash is currently displayed
SuspendAutoCloseMode()Suspend auto-close timer
RestoreAutoCloseMode()Restore auto-close timer

Key Events

EventEventArgs TypeDescription
BeforeSplashCancelEventArgsRaised before splash is displayed; can be canceled.
SplashDisplayedEventArgsRaised after the splash panel becomes visible.
SplashClosingCancelEventArgsRaised before the splash closes; can be canceled.
SplashClosedSplashClosedEventArgsRaised after the splash has closed; provides close type.
SplashMouseEnterEventArgsRaised when the mouse enters the splash panel.
SplashMouseLeaveEventArgsRaised when the mouse leaves the splash panel.

Common Use Cases

Use Case 1: Application Startup Screen

Display branding and version information while the application initializes.

Use Case 2: Loading Indicator

Show a splash panel with progress information during lengthy operations.

Use Case 3: Notification Popup

Display non-obtrusive messages (new mail, updates) that auto-close or close on click.

Use Case 4: About/Info Dialog

Show application information as a modal splash dialog.

Use Case 5: Custom Message Window

Create themed message windows with custom controls and animations.

Best Practices

  1. Set appropriate TimerInterval: Use 2000-5000ms for startup splashes, 3000-8000ms for notifications
  2. Enable ShowAsTopMost: Ensure splash appears above other windows during startup
  3. Use CloseOnClick for notifications: Allow users to dismiss notification-style popups
  4. Handle BeforeSplash event: Initialize data or cancel display based on conditions
  5. Choose appropriate animations: FadeIn for subtle, Slide for dynamic, Marquee for attention-grabbing
  6. Add child controls carefully: Ensure controls are visible and properly positioned within splash bounds
  7. Test different alignments: Verify splash appears correctly on different screen resolutions
  8. Dispose properly: Ensure splash panel is properly disposed when form closes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.33%
按下载量换算79

Claude

33.59%
按下载量换算73

Cursor

18.42%
按下载量换算40

Gemini CLI

9.27%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills