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.
ITSM/.svn/pristine/d0/d06456b2e9e4895e2f04e27da7d...

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