|
|
|
|
OnMouseEnter Method, SftTree Class |
Raises the MouseEnter event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Protected Overrides Sub OnMouseEnter( ByVal e As EventArgs ) |
C# |
protected override void OnMouseEnter( EventArgs e ); |
C++ |
protected: virtual void OnMouseEnter( EventArgs^ e ); |
e
The event data.
Comments
The OnMouseEnter method raises the MouseEnter event.
Raising an event invokes the event handler through a delegate.
The OnMouseEnter method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnMouseEnter in a derived class, make sure to call the base class's OnMouseEnter method so that registered delegates receive the event.