mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-06 11:36:56 +02:00
initial import
This commit is contained in:
37
ChanSort.Ui/WaitForm1.cs
Normal file
37
ChanSort.Ui/WaitForm1.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using DevExpress.XtraWaitForm;
|
||||
|
||||
namespace ChanSort.Ui
|
||||
{
|
||||
public partial class WaitForm1 : WaitForm
|
||||
{
|
||||
public WaitForm1()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.progressPanel1.AutoHeight = true;
|
||||
}
|
||||
|
||||
#region Overrides
|
||||
|
||||
public override void SetCaption(string caption)
|
||||
{
|
||||
base.SetCaption(caption);
|
||||
this.progressPanel1.Caption = caption;
|
||||
}
|
||||
public override void SetDescription(string description)
|
||||
{
|
||||
base.SetDescription(description);
|
||||
this.progressPanel1.Description = description;
|
||||
}
|
||||
public override void ProcessCommand(Enum cmd, object arg)
|
||||
{
|
||||
base.ProcessCommand(cmd, arg);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public enum WaitFormCommand
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user