using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using DevComponents.DotNetBar; using System.Diagnostics; using System.IO; namespace Cyberpipe { public partial class FrmWait : DevComponents.DotNetBar.Office2007Form { static FrmWait frm = null; private string labelText = null; public static FrmWait getForm() { if (frm == null) { frm = new FrmWait("正在审核……");//默认在审核的时候使用 frm.ShowDialog(); } return frm; } public FrmWait(string labelText) { this.labelText = labelText; InitializeComponent(); } private void FrmWait_FormClosing(object sender, FormClosingEventArgs e) { frm = null; } private void FrmWait_Load(object sender, EventArgs e) { } private void labelX2_Click(object sender, EventArgs e) { } private void progressBarX1_Click(object sender, EventArgs e) { } private void label1_Click(object sender, EventArgs e) { } } }