如何检测VB.NET
应用中的有效元素是否为文本框?
Me.ActiveControl
然后呢?
答案 0 :(得分:1)
您可以使用TypeOf
:
Dim isATextBox As Boolean = TypeOf Me.ActiveControl Is TextBox
答案 1 :(得分:1)
另一种方式是
If Me.ActiveControl.GetType() Is GetType(System.Windows.Forms.TextBox) Then
' do stuff
End If