You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
373 B

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