ab56a9bcf7
SVN-Revision: r240
33 lines
700 B
C#
33 lines
700 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 Lskj.Control
|
|
{
|
|
public partial class FrmSplashScreen : SplashScreen
|
|
{
|
|
public FrmSplashScreen()
|
|
{
|
|
InitializeComponent();
|
|
Lskj.Control.Model.AutoSizeChange.ControllInitializeSize(this);
|
|
}
|
|
|
|
#region Overrides
|
|
|
|
public override void ProcessCommand(Enum cmd, object arg)
|
|
{
|
|
base.ProcessCommand(cmd, arg);
|
|
}
|
|
|
|
#endregion
|
|
|
|
public enum SplashScreenCommand
|
|
{
|
|
}
|
|
}
|
|
} |