36 lines
888 B
C#
36 lines
888 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using DevExpress.XtraWaitForm;
|
||
|
|
|
||
|
|
namespace WMS.Ctrl
|
||
|
|
{
|
||
|
|
public partial class LoadForm : WaitForm
|
||
|
|
{
|
||
|
|
public LoadForm()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
this.progressPanel1.AutoWidth = true;
|
||
|
|
}
|
||
|
|
public static object frms =new object();
|
||
|
|
|
||
|
|
public override void SetCaption(string caption)
|
||
|
|
{
|
||
|
|
base.SetCaption(caption);
|
||
|
|
this.progressPanel1.Caption = caption;
|
||
|
|
}
|
||
|
|
public override void SetDescription(string description)
|
||
|
|
{
|
||
|
|
base.SetDescription(description);
|
||
|
|
this.progressPanel1.Description = description;
|
||
|
|
}
|
||
|
|
public override void ProcessCommand(Enum cmd, object arg)
|
||
|
|
{
|
||
|
|
base.ProcessCommand(cmd, arg);
|
||
|
|
}
|
||
|
|
|
||
|
|
public enum WaitFormCommand
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|