19 lines
399 B
C#
19 lines
399 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Drawing;
|
||
|
|
using System.Linq;
|
||
|
|
using DevExpress.Utils;
|
||
|
|
|
||
|
|
namespace WMS.Ctrl
|
||
|
|
{
|
||
|
|
public partial class FrmWaitDialog : WaitDialogForm
|
||
|
|
{
|
||
|
|
public FrmWaitDialog()
|
||
|
|
: base("正在处理数据", "请 等 待", new Size(95, 55))
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
this.Visible = false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|