Skip to content

Commit b443958

Browse files
committed
修复当处于工具栏关闭课件时关闭主窗口终止关闭课件问题 - 20241206
1 parent e515e19 commit b443958

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Src/UsefulControl.suo

0 Bytes
Binary file not shown.

Src/UsefulControl/Form1.vb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,11 @@ Public Class Form1
679679

680680
Private Sub Button4_Click(sender As System.Object, e As System.EventArgs) Handles Button4.Click
681681
If BootForm.ToolMode = 1 Then
682-
Me.Close()
682+
If Button14.Text = "正在关闭课件" Then
683+
Me.Hide()
684+
Else
685+
Me.Close()
686+
End If
683687
BootForm.WindowState = FormWindowState.Normal
684688
BootForm.Show()
685689
Else

Src/UsefulControl/My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
3131
' 方法是按如下所示使用“*”:
3232
' <Assembly: AssemblyVersion("1.0.*")>
3333

34-
<Assembly: AssemblyVersion("1.0.10.24113")>
35-
<Assembly: AssemblyFileVersion("1.0.10.24113")>
34+
<Assembly: AssemblyVersion("1.0.11.24121")>
35+
<Assembly: AssemblyFileVersion("1.0.11.24121")>

0 commit comments

Comments
 (0)