32 lines
628 B
C#
32 lines
628 B
C#
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 DeiNiu.wms.win.goods
|
|
{
|
|
public partial class SplashScreen1 : SplashScreen
|
|
{
|
|
public SplashScreen1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
#region Overrides
|
|
|
|
public override void ProcessCommand(Enum cmd, object arg)
|
|
{
|
|
base.ProcessCommand(cmd, arg);
|
|
}
|
|
|
|
#endregion
|
|
|
|
public enum SplashScreenCommand
|
|
{
|
|
}
|
|
}
|
|
} |