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.
37 lines
848 B
C#
37 lines
848 B
C#
using DevExpress.XtraWaitForm;
|
|
using System;
|
|
|
|
namespace ZJ_BYD
|
|
{
|
|
public partial class WaitForm1 : WaitForm
|
|
{
|
|
public WaitForm1()
|
|
{
|
|
InitializeComponent();
|
|
this.progressPanel1.AutoHeight = true;
|
|
}
|
|
|
|
#region Overrides
|
|
|
|
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);
|
|
}
|
|
|
|
#endregion
|
|
|
|
public enum WaitFormCommand
|
|
{
|
|
}
|
|
}
|
|
} |