Files
Epole_Class/Frm_Shortkey.vb
Chikyun 59db93a1be initial commit
스타일 숨김/표시 처리 기능 추가됨
2019-02-23 23:53:40 +09:00

8 lines
269 B
VB.net

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