// // Copyright (c) PlaceholderCompany. All rights reserved. // using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using DevExpress.XtraWaitForm; 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 { } } }