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.
|
|
|
|
|
// <copyright file="SplashForm.cs" company="PlaceholderCompany">
|
|
|
|
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
|
|
|
|
// </copyright>
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <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,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|