16,721
社区成员




For Each T As Control In TabPage1.Controls
Select Case T.GetType.ToString
Case "System.Windows.Forms.TextBox", "System.Windows.Forms.Label", "System.Windows.Forms.ListBox"
AddHandler T.TextChanged, AddressOf dwstring
Case "System.Windows.Forms.Button"
T()
AddHandler T.Click, AddressOf dwstring
End Select
Next