12 lines
373 B
VB.net
12 lines
373 B
VB.net
Friend Class ComboBoxTree_TreeView
|
|
Inherits System.Windows.Forms.TreeView
|
|
|
|
Protected Overrides Function IsInputKey(ByVal keyData As System.Windows.Forms.Keys) As Boolean
|
|
If (keyData = Keys.Escape) OrElse (keyData = Keys.Enter) Then
|
|
Return True
|
|
Else
|
|
Return MyBase.IsInputKey(keyData)
|
|
End If
|
|
End Function
|
|
End Class
|