Browse Source

submit code

zhouxianguang 6 năm trước cách đây
mục cha
commit
456651aa57
1 tập tin đã thay đổi với 6 bổ sung2 xóa
  1. 6 2
      WinBox/MainForm.cs

+ 6 - 2
WinBox/MainForm.cs

@@ -164,13 +164,17 @@ namespace WinBox
             //detectionPort();
             if (!PortInUse(9191))
             {
-                MessageBox.Show("有依赖项启动失败,请重新启动客户端或联系管理员!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
+                Thread.Sleep(2500);
+                if (!PortInUse(9191))
+                {
+                    MessageBox.Show("有依赖项启动失败,请重新启动客户端或联系管理员!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
+                }
             }
         }
 
         public bool PortInUse(int port)
         {
-            Thread.Sleep(2500);
+           
             bool inUse = false;
 
             IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties();