39 lines
877 B
C#
39 lines
877 B
C#
using DevExpress.XtraWaitForm;
|
|
using System;
|
|
|
|
namespace HL_FristAidPlatform_Public
|
|
{
|
|
public partial class Form_Wait : WaitForm
|
|
{
|
|
public Form_Wait()
|
|
{
|
|
InitializeComponent();
|
|
this.progressPanel.AutoHeight = true;
|
|
}
|
|
|
|
#region Overrides
|
|
|
|
public override void SetCaption(string caption)
|
|
{
|
|
base.SetCaption(caption);
|
|
this.progressPanel.Caption = caption;
|
|
}
|
|
|
|
public override void SetDescription(string description)
|
|
{
|
|
base.SetDescription(description);
|
|
this.progressPanel.Description = description;
|
|
}
|
|
|
|
public override void ProcessCommand(Enum cmd, object arg)
|
|
{
|
|
base.ProcessCommand(cmd, arg);
|
|
}
|
|
|
|
#endregion Overrides
|
|
|
|
public enum WaitFormCommand
|
|
{
|
|
}
|
|
}
|
|
} |