using DevExpress.XtraSplashScreen; namespace TsSFCDevice.Client.Launch { public static class UtilsEx { /// /// 关闭等待窗口 /// /// public static void TryCloseWait(this SplashScreenManager ssm) { try { if (ssm.IsSplashFormVisible) { ssm.CloseWaitForm(); } } catch { } } } }