2013-04-09 69 views
0

好吧,所以我在stackoverflow上找到了这个代码,并且在我的项目中将它实现为一个新的类文件。为什么我的RichTextBox没有激活它的事件vb.net

Imports System 
Imports System.Collections.Generic 
Imports System.Text 
Imports System.Runtime.InteropServices 
Imports System.Windows.Forms 

Namespace WindowsFormsApplication1 

    Public Class MyRichTextBox 
     Inherits RichTextBox 
     <DllImport("user32.dll", CharSet:=CharSet.Auto)> _ 
     Public Shared Function GetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer) As Integer 
     End Function 

     <DllImport("user32.dll")> _ 
     Private Shared Function SetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer, ByVal nPos As Integer, ByVal bRedraw As Boolean) As Integer 
     End Function 

     Private Const SB_HORZ As Integer = &H0 
     Private Const SB_VERT As Integer = &H1 

     ''' <summary> 
     ''' Gets and Sets the Horizontal Scroll position of the control. 
     ''' </summary> 
     Public Property HScrollPos() As Integer 
      Get 
       Return GetScrollPos(DirectCast(Me.Handle, IntPtr), SB_HORZ) 
      End Get 
      Set(ByVal value As Integer) 
       SetScrollPos(DirectCast(Me.Handle, IntPtr), SB_HORZ, value, True) 
      End Set 
     End Property 

     ''' <summary> 
     ''' Gets and Sets the Vertical Scroll position of the control. 
     ''' </summary> 
     Public Property VScrollPos() As Integer 
      Get 
       Return GetScrollPos(DirectCast(Me.Handle, IntPtr), SB_VERT) 
      End Get 
      Set(ByVal value As Integer) 
       SetScrollPos(DirectCast(Me.Handle, IntPtr), SB_VERT, value, True) 
      End Set 
     End Property 
    End Class 
End Namespace 

当我将代码实现到我的项目中后,我意识到要替换我的RichTextBox,我将不得不更改大部分代码。寻求更快的方式来做到这一点,我把下面的代码放在我的form1_Load事件中。

RichTextBox1 = New MyRichTextBox 

所以现在RichTextBox1是MyRichTextBox

因为MyRichTextBox实现RichTextBox中应该具有相同的事件。

但我的RichTextbox.TextChanged事件不起作用。现在,如果我从form1_load中删除上面的那一行,它可以正常工作。怎么了?

编辑

所以我发现MyRichTextBox不具有相同的事件作为一个RichTextBox ......我怎么会添加这些事件?

回答

0

试试这个代码。

添加TextChanged事件中端类

例如

Imports System 
    Imports System.Collections.Generic 
    Imports System.Text 
    Imports System.Runtime.InteropServices 
    Imports System.Windows.Forms 
    Namespace WindowsFormsApplication1 

     Public Class MyRichTextBox 
      Inherits RichTextBox 
      <DllImport("user32.dll", CharSet:=CharSet.Auto)> _ 
      Public Shared Function GetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer) As Integer 
      End Function 

      <DllImport("user32.dll")> _ 
      Private Shared Function SetScrollPos(ByVal hWnd As IntPtr, ByVal nBar As Integer, ByVal nPos As Integer, ByVal bRedraw As Boolean) As Integer 
      End Function 

      Private Const SB_HORZ As Integer = &H0 
      Private Const SB_VERT As Integer = &H1 

...... 
......... 
.......... 
........ 
...... 


''' Add the Event 



      Protected Overrides Sub OnTextChanged(ByVal e As System.EventArgs) 

       MsgBox(Me.Text) 
       MyBase.OnTextChanged(e) 
      End Sub 

     End Class 

    End Namespace 

在Load事件

Dim RichTextBox1 As New WindowsFormsApplication1.MyRichTextBox 
    Me.Controls.Add(RichTextBox1)