initial commit

스타일 숨김/표시 처리 기능 추가됨
This commit is contained in:
Chikyun
2019-02-23 23:53:40 +09:00
commit 59db93a1be
45 changed files with 11466 additions and 0 deletions

24
selitem.vb Normal file
View File

@@ -0,0 +1,24 @@
Public Class selitem
Private Sub selitem_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
End Sub
Private Sub selitem_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp
If e.KeyCode = Windows.Forms.Keys.Escape Then
Me.DialogResult = Windows.Forms.DialogResult.Cancel
Me.Dispose()
ElseIf e.KeyCode = Windows.Forms.Keys.Enter Then
Me.DialogResult = Windows.Forms.DialogResult.OK
Me.Dispose()
End If
End Sub
Private Sub ListBox1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.DoubleClick
Me.DialogResult = Windows.Forms.DialogResult.OK
Me.Dispose()
End Sub
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
End Sub
End Class