在我的用戶控件中,我想阻止用戶選擇文本,我的意思是我想取消(忽略)所有的鼠標事件,我已經重寫了重要的事件,但似乎什麼都沒有,因爲我仍然可以選擇控件上的文本。忽略選擇繼承的RichTextbox上的文本?
PS:不是我選擇禁用控制以防止選擇,我想禁用選擇。
Public Class RichTextLabel : Inherits RichTextBox
Private Declare Function HideCaret Lib "user32" (ByVal hwnd As IntPtr) As Integer
Public Sub New()
Me.TabStop = False
Me.Cursor = Cursors.Default
Me.Size = New Point(200, 20)
Me.ReadOnly = True
Me.BorderStyle = BorderStyle.None
Me.ScrollBars = RichTextBoxScrollBars.None
End Sub
Public Sub Add_Colored_Text(ByVal text As String, _
ByVal color As Color, _
Optional ByVal font As Font = Nothing)
Dim index As Int32 = Me.TextLength
Me.AppendText(text)
Me.SelectionStart = index
Me.SelectionLength = Me.TextLength - index
Me.SelectionColor = color
If font IsNot Nothing Then Me.SelectionFont = font
Me.SelectionLength = 0
End Sub
#Region " Overrided Events "
Protected Overrides Sub OnClick(ByVal e As EventArgs)
HideCaret(Me.Handle)
Return
End Sub
Protected Overrides Sub OnSelectionChanged(ByVal e As EventArgs)
HideCaret(Me.Handle)
Return
End Sub
Protected Overrides Sub OnMouseClick(ByVal e As MouseEventArgs)
HideCaret(Me.Handle)
' MyBase.OnClick(e)
Return
End Sub
Protected Overrides Sub OnMouseDoubleClick(ByVal e As MouseEventArgs)
HideCaret(Me.Handle)
Return
End Sub
Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
HideCaret(Me.Handle)
Return
End Sub
Protected Overrides Sub OnMouseUp(ByVal e As MouseEventArgs)
HideCaret(Me.Handle)
Return
End Sub
#End Region
#Region " Handled Events "
Private Sub On_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Me.MouseHover
HideCaret(Me.Handle)
End Sub
Private Sub On_TextChanged(sender As Object, e As EventArgs) Handles Me.TextChanged
HideCaret(Me.Handle)
End Sub
#End Region
End Class
爲什麼你不能禁用該控件?僅僅是因爲它將文本變成灰色嗎? – tehDorf