UIElement.QueryContinueDrag 이벤트
정의
끌어서 놓기 작업 중 키보드 또는 마우스 단추 상태가 변경되면 발생합니다.Occurs when there is a change in the keyboard or mouse button state during a drag-and-drop operation.
public:
event System::Windows::QueryContinueDragEventHandler ^ QueryContinueDrag;
public event System.Windows.QueryContinueDragEventHandler QueryContinueDrag;
member this.QueryContinueDrag : System.Windows.QueryContinueDragEventHandler
Public Custom Event QueryContinueDrag As QueryContinueDragEventHandler
설명
QueryContinueDrag 이벤트 끌기 소스가 끌어서 놓기 작업을 취소 해야 하는지 여부를 결정할 수 있습니다.The QueryContinueDrag event enables the drag source to determine whether the drag-and-drop operation should be canceled.
이 이벤트는이 클래스에 대해 연결 된 DragDrop.QueryContinueDrag 이벤트에 대 한 별칭을 만듭니다. 따라서 UIElement 기본 요소로 상속 될 때 QueryContinueDrag 클래스 멤버 목록의 일부가 됩니다.This event creates an alias for the DragDrop.QueryContinueDrag attached event for this class, so that QueryContinueDrag is part of the class members list when UIElement is inherited as a base element. QueryContinueDrag 이벤트에 연결 된 이벤트 처리기는 기본 DragDrop.QueryContinueDrag 연결 된 이벤트에 연결 되며 동일한 이벤트 데이터 인스턴스를 수신 합니다.Event handlers that are attached to the QueryContinueDrag event are attached to the underlying DragDrop.QueryContinueDrag attached event and receive the same event data instance.
라우팅 이벤트 정보Routed Event Information
식별자 필드Identifier field | QueryContinueDragEvent |
라우팅 전략Routing strategy | 버블링Bubbling |
대리자Delegate | QueryContinueDragEventHandler |
해당 터널링 이벤트가 PreviewQueryContinueDrag합니다.The corresponding tunneling event is PreviewQueryContinueDrag.
파생 클래스에서이 이벤트에 대 한 클래스 처리를 구현 하려면 OnQueryContinueDrag를 재정의 합니다.Override OnQueryContinueDrag to implement class handling for this event in derived classes.