UIElement.PreviewQueryContinueDrag Evento
Definición
Se produce cuando hay algún cambio en el estado del botón del mouse o del teclado durante una operación de arrastrar y colocar.Occurs when there is a change in the keyboard or mouse button state during a drag-and-drop operation.
public:
event System::Windows::QueryContinueDragEventHandler ^ PreviewQueryContinueDrag;
public event System.Windows.QueryContinueDragEventHandler PreviewQueryContinueDrag;
member this.PreviewQueryContinueDrag : System.Windows.QueryContinueDragEventHandler
Public Custom Event PreviewQueryContinueDrag As QueryContinueDragEventHandler
Tipo de evento
Comentarios
El PreviewQueryContinueDrag evento permite al origen de arrastre declarar si se debe cancelar la operación de arrastrar y colocar.The PreviewQueryContinueDrag event enables the drag source to declare whether the drag-and-drop operation should be canceled.
Este evento crea un alias para el DragDrop.PreviewQueryContinueDrag evento adjunto para esta clase, por lo que forma PreviewQueryContinueDrag parte de la lista de miembros de clase cuando UIElement se hereda como un elemento base.This event creates an alias for the DragDrop.PreviewQueryContinueDrag attached event for this class, so that PreviewQueryContinueDrag is part of the class members list when UIElement is inherited as a base element. Los controladores de eventos adjuntos al PreviewQueryContinueDrag evento se adjuntan al DragDrop.PreviewQueryContinueDrag evento adjunto subyacente y reciben la misma instancia de datos de evento.Event handlers that are attached to the PreviewQueryContinueDrag event are attached to the underlying DragDrop.PreviewQueryContinueDrag attached event and receive the same event data instance.
Información sobre eventos enrutadosRouted Event Information
Campo de identificadorIdentifier field | PreviewQueryContinueDragEvent |
Estrategia de enrutamientoRouting strategy | Protocolo de túnelTunneling |
DelegadoDelegate | QueryContinueDragEventHandler |
El evento de propagación correspondiente es QueryContinueDrag .The corresponding bubbling event is QueryContinueDrag.
Invalide OnPreviewQueryContinueDrag para implementar el control de clases para este evento en las clases derivadas.Override OnPreviewQueryContinueDrag to implement class handling for this event in derived classes.