#region
|
|
using System;
|
using DevExpress.XtraWaitForm;
|
|
#endregion
|
|
namespace CSFrameworkV5.Library.CommonForms
|
{
|
/// <summary>
|
/// 等待窗体
|
/// </summary>
|
internal partial class frmWaitForm : WaitForm
|
{
|
//默认构造函数
|
public frmWaitForm()
|
{
|
InitializeComponent();
|
progressPanel1.AutoHeight = true;
|
}
|
|
#region Overrides
|
|
public override void SetCaption(string caption)
|
{
|
base.SetCaption(caption);
|
progressPanel1.Caption = caption;
|
}
|
|
public override void SetDescription(string description)
|
{
|
base.SetDescription(description);
|
progressPanel1.Description = description;
|
}
|
|
public override void ProcessCommand(Enum cmd, object arg)
|
{
|
base.ProcessCommand(cmd, arg);
|
}
|
|
#endregion
|
}
|
}
|