//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
using DevExpress.XtraWaitForm;
using System;
namespace PcgDrawR
{
///
/// The wait form1.
///
public partial class WaitForm1 : WaitForm
{
///
/// Initializes a new instance of the class.
///
public WaitForm1()
{
InitializeComponent();
this.progressPanel1.AutoHeight = true;
this.ShowOnTopMode = ShowFormOnTopMode.AboveAll;
}
#region Overrides
///
/// Sets the caption.
///
/// The caption.
public override void SetCaption(string caption)
{
base.SetCaption(caption);
this.progressPanel1.Caption = caption;
}
///
/// Sets the description.
///
/// The description.
public override void SetDescription(string description)
{
base.SetDescription(description);
this.progressPanel1.Description = description;
}
///
/// Processes the command.
///
/// The cmd.
/// The arg.
public override void ProcessCommand(Enum cmd, object arg)
{
base.ProcessCommand(cmd, arg);
}
#endregion
///
/// The wait form command.
///
public enum WaitFormCommand
{
}
}
}