// // Copyright (c) PlaceholderCompany. All rights reserved. // using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using DevExpress.XtraSplashScreen; 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, } } }