0
A
回答
0
Public Class ZTextBox
Inherits System.Windows.Forms.TextBox
Public Event ZTextChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
MyBase.OnPaint(e)
'Add your custom paint code here
End Sub
Private Sub ZTextBox_TextChanged1(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.TextChanged
If Me.Text.Length > 3 Then
RaiseEvent ZTextChanged(sender, e)
End If
End Sub End Class
,你可以用你的表格下面
Private Sub ZTextBox1_ZTextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ZTextBox1.ZTextChanged
MsgBox(1)
End Sub
0
我想你會需要一個自定義控件,它繼承了自定義事件的文本框控件,在內部事件中執行檢查,並在看到合適的時候觸發自定義事件。
相關問題
- 1. Textbox Textchanged事件
- 2. ASP.NET Textbox TextChanged和Button OnClick事件交互?
- 3. ASP .Net Textbox Textchanged事件
- 4. TextBox - TextChanged事件Windows C#
- 5. TextChanged上的Textbox事件給出錯誤!
- 6. Asp.Net Repeater如何找到TextBox「TextChanged」事件的另一個控件
- 7. WPF TextBox事件TextChanged PreviewTextInput不會觸發
- 8. 當TextBox TextChanged事件被觸發?
- 9. textbox textchanged事件總是觸發
- 10. C# - TextBox TextChanged事件沒有觸發
- 11. asp.net textbox - 客戶端textChanged事件不會觸發
- 12. TextBox TextChanged事件和CheckBoc CheckedChanged事件不在GridView中發射
- 13. 取消TextChanged事件(ASP.NET)
- 14. 如何使用c#.net AJAX textbox textchanged事件自動完成?
- 15. WPF TextChanged事件
- 16. TextBox不會觸發IE 8上的TextChanged事件,AutoPostback爲真
- 17. 如何使用textBox textchanged事件搜索listView特定項目?
- 18. ASP.NET TextBox LostFocus事件
- 19. ASP.Net textbox onblur事件
- 20. 在TextChanged TextBox上顯示等待光標
- 21. asp.net textbox autocomplete顯示自定義數據
- 22. Asp.net上的c#Textchanged事件發射兩次
- 23. 在TextBox上自定義邊框
- 24. 在PostBack的DataBinding之後調用GridView中TextBox的TextBox內部UpdatePanel的TextChanged事件
- 25. 如何在wpf中調用textbox的textchanged事件延遲
- 26. textbox - Asp.net上的KeyPress事件[no javascript]
- 27. 在ASP.net的GridView中使用TextBox進行自定義控件
- 28. ListBox內部的TextBox - 在TextBox上獲取ListViewItem TextChanged
- 29. 帶自定義事件的Asp.net控件
- 30. MS Access中的TextChanged事件