QueryContinueDragEventHandler 委托

定义

表示一个将处理路由事件的方法,拖动源(例如 QueryContinueDrag)可以利用该方法取消拖放事件。

public delegate void QueryContinueDragEventHandler(System::Object ^ sender, QueryContinueDragEventArgs ^ e);
public delegate void QueryContinueDragEventHandler(object sender, QueryContinueDragEventArgs e);
type QueryContinueDragEventHandler = delegate of obj * QueryContinueDragEventArgs -> unit
Public Delegate Sub QueryContinueDragEventHandler(sender As Object, e As QueryContinueDragEventArgs)

参数

sender
Object

事件处理程序所附加到的对象。

e
QueryContinueDragEventArgs

事件数据。

注解

此委托与以下附加事件一起使用:

此委托还用于基元素上的以下路由事件。 这些路由事件转发前面列出的附加事件,使它们更易于 WPF 中的常规元素模型访问。

附加事件和基元素路由事件共享其事件数据,路由事件的浮升和隧道版本也共享事件数据。 这可能会影响事件在传递事件路由时已处理的特征。 有关详细信息,请参阅 输入概述

DragDrop.QueryContinueDrag附加事件在拖放操作期间发生,并允许拖动源确定是否应取消拖放操作。

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于