ToolStripItem.OnMouseLeave(EventArgs) 方法

定义

引发 MouseLeave 事件。

protected:
 virtual void OnMouseLeave(EventArgs ^ e);
protected virtual void OnMouseLeave (EventArgs e);
abstract member OnMouseLeave : EventArgs -> unit
override this.OnMouseLeave : EventArgs -> unit
Protected Overridable Sub OnMouseLeave (e As EventArgs)

参数

e
EventArgs

包含事件数据的 EventArgs

示例

下面的代码示例演示如何重写 OnMouseLeave 方法。 此代码示例是为 ToolStripItem 类提供的一个更大示例的一部分。

// This method defines the behavior of the MouseLeave event.
// It sets the state of the rolloverValue field to false and
// tells the control to repaint.
protected override void OnMouseLeave(EventArgs e)
{
    base.OnMouseLeave(e);

    this.rolloverValue = false;

    this.Invalidate();
}
' This method defines the behavior of the MouseLeave event.
' It sets the state of the rolloverValue field to false and
' tells the control to repaint.
Protected Overrides Sub OnMouseLeave(e As EventArgs)
   MyBase.OnMouseLeave(e)
   
   Me.rolloverValue = False
   
   Me.Invalidate()
 End Sub

注解

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件

OnMouseLeave 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnMouseLeave(EventArgs) 时,一定要调用基类的 OnMouseLeave(EventArgs) 方法,以便已注册的委托对事件进行接收。

适用于