//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
using DevExpress.XtraSplashScreen;
using System;
namespace PcgDrawR
{
///
/// The splash form.
///
public partial class SplashForm : SplashScreen
{
///
/// Initializes a new instance of the class.
///
public SplashForm()
{
InitializeComponent();
}
#region Overrides
///
/// Processes the command.
///
/// The cmd.
/// The arg.
public override void ProcessCommand(Enum cmd, object arg)
{
base.ProcessCommand(cmd, arg);
}
#endregion
///
/// The splash screen command.
///
public enum SplashScreenCommand
{
///
/// 更新消息
///
UpdateMessage,
}
}
}