This commit is contained in:
chi
2020-05-24 15:12:23 +09:00
parent 7ef4e8c5fd
commit 38f3d4a51e
135 changed files with 22837 additions and 34 deletions

8
Project/Frm_Shortkey.vb Normal file
View File

@@ -0,0 +1,8 @@
Public Class Frm_Shortkey
Private Sub Frm_Shortkey_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
If e.KeyCode = Windows.Forms.Keys.Escape Then
Me.Close()
End If
End Sub
End Class