DeviceManager/TsSFCDevice.Client.Launch/UtilsEx.cs

25 lines
528 B
C#
Raw Permalink Normal View History

2024-07-27 01:44:19 +00:00
using DevExpress.XtraSplashScreen;
namespace TsSFCDevice.Client.Launch
{
public static class UtilsEx
{
/// <summary>
/// 关闭等待窗口
/// </summary>
/// <param name="ssm"></param>
public static void TryCloseWait(this SplashScreenManager ssm)
{
try
{
if (ssm.IsSplashFormVisible)
{
ssm.CloseWaitForm();
}
}
catch
{ }
}
}
}