namespace Yw.WinFrmUI
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public partial class WaitFormStyle : DevExpress.XtraWaitForm.WaitForm
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public WaitFormStyle()
|
{
|
InitializeComponent();
|
this.progressPanel1.AutoHeight = true;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public override void SetCaption(string caption)
|
{
|
base.SetCaption(caption);
|
this.progressPanel1.Caption = caption;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public override void SetDescription(string description)
|
{
|
base.SetDescription(description);
|
this.progressPanel1.Description = description;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public override void ProcessCommand(Enum cmd, object arg)
|
{
|
if (arg != null)
|
{
|
SetCaption(arg.ToString());
|
}
|
base.ProcessCommand(cmd, arg);
|
}
|
|
|
}
|
}
|