- 积分
- 6092
- 在线时间
- 1870 小时
- 主题
- 12
- 注册时间
- 2013-6-8
- 帖子
- 332
- 最后登录
- 2024-11-21
- 帖子
- 332
- 软币
- 21662
- 在线时间
- 1870 小时
- 注册时间
- 2013-6-8
|
发表于 2013-9-7 08:27:12
|
显示全部楼层
转换一下差不多就这样
using Microsoft.VisualBasic;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
static class ModuleWaitDialog
{
private static DevExpress.Utils.WaitDialogForm Dlg = null;
public static void CreateWaitDialog(string Caption = "", string Title = "")
{
if (string.IsNullOrEmpty(Title)) {
Dlg = new DevExpress.Utils.WaitDialogForm(Caption);
} else {
Dlg = new DevExpress.Utils.WaitDialogForm(Caption, Title);
}
}
public static void CloseWaitDialog()
{
Dlg.Close();
}
public static void SetWaitDialogCaption(string fCaption)
{
if (Dlg != null) {
Dlg.Caption = fCaption;
}
}
} |
|