ContentElement.MouseLeave 事件

定义

在鼠标指针离开此元素的边界时发生。

public:
 virtual event System::Windows::Input::MouseEventHandler ^ MouseLeave;
public event System.Windows.Input.MouseEventHandler MouseLeave;
member this.MouseLeave : System.Windows.Input.MouseEventHandler 
Public Custom Event MouseLeave As MouseEventHandler 

事件类型

实现

注解

MouseLeave 是使用直接事件处理路由策略的 路由事件概述 。 不会沿路由引发直接路由事件;而是在引发它们的同一元素中处理它们。 但是,它们确实支持路由事件行为的其他方面,例如样式中的事件触发器。

尽管 MouseLeave 跟踪鼠标离开元素的时间,但此事件更能从字面上报告此元素上的 IsMouseOver 属性值已从 true 更改为 false

此事件为此类的Mouse.MouseLeave附加事件创建别名,以便在 继承为基元素时ContentElementMouseLeave它是类成员列表的一部分。 附加到 MouseLeave 事件的事件处理程序将附加到基础 Mouse.MouseLeave 附加事件,并接收相同的事件数据实例。

路由事件信息

标识符字段 MouseLeaveEvent
路由策略 直接
委托 MouseEventHandler
  • 重写 OnMouseLeave 以在派生类中实现此事件的类处理。

适用于