You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB
C#

1 month ago
// <copyright file="SplashForm.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using DevExpress.XtraSplashScreen;
1 month ago
using System;
1 month ago
namespace PcgDrawR
{
/// <summary>
/// The splash form.
/// </summary>
public partial class SplashForm : SplashScreen
{
/// <summary>
/// Initializes a new instance of the <see cref="SplashForm"/> class.
/// </summary>
public SplashForm()
{
InitializeComponent();
}
#region Overrides
/// <summary>
/// Processes the command.
/// </summary>
/// <param name="cmd">The cmd.</param>
/// <param name="arg">The arg.</param>
public override void ProcessCommand(Enum cmd, object arg)
{
base.ProcessCommand(cmd, arg);
}
#endregion
/// <summary>
/// The splash screen command.
/// </summary>
public enum SplashScreenCommand
{
/// <summary>
/// 更新消息
/// </summary>
UpdateMessage,
}
}
}