UIElement3D.OnMouseRightButtonUp(MouseButtonEventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当某个未处理的 MouseRightButtonUp 路由事件在其路由中到达派生自此类的某个元素时调用。 实现此方法可为此事件添加类处理。
protected public:
virtual void OnMouseRightButtonUp(System::Windows::Input::MouseButtonEventArgs ^ e);
protected internal virtual void OnMouseRightButtonUp (System.Windows.Input.MouseButtonEventArgs e);
abstract member OnMouseRightButtonUp : System.Windows.Input.MouseButtonEventArgs -> unit
override this.OnMouseRightButtonUp : System.Windows.Input.MouseButtonEventArgs -> unit
Protected Friend Overridable Sub OnMouseRightButtonUp (e As MouseButtonEventArgs)
参数
包含事件数据的 MouseButtonEventArgs。 事件数据报告称已释放鼠标右键。
注解
事件 MouseRightButtonUp 看起来是一条冒泡路线,但实际上是间接的。
Mouse.MouseUp 是气泡路由的基础事件,沿事件路由的每个 UIElement3D 都使用相同的处理来引发直接路由事件 MouseRightButtonUp。 尽管可以出于此元素的目的将 MouseRightButtonUp 事件标记为已处理,但已处理的状态不会永久延续到事件路由中的其他元素。 但是,你可能希望将事件标记为已处理,以防止常规实例处理程序 (未指定 handledEventsToo
) 处理程序被调用。
中 UIElement3D 常规鼠标事件处理的默认实现侦听 Mouse.MouseUp 并将其转换为适当的本地事件。 如果要重写此逻辑,则必须创建派生类。 在派生类的静态构造函数中,为 Mouse.MouseUp注册备用类处理程序。 不能通过重写 OnMouseRightButtonUp来更改 的UIElement3D鼠标处理行为。