UIElement.DropCompleted イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ソースとしてこの要素を使用したドラッグ アンド ドロップ操作が終了したときに発生します。
// Register
event_token DropCompleted(TypedEventHandler<UIElement, DropCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void DropCompleted(event_token const* cookie) const;
// Revoke with event_revoker
UIElement::DropCompleted_revoker DropCompleted(auto_revoke_t, TypedEventHandler<UIElement, DropCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<UIElement,DropCompletedEventArgs> DropCompleted;
function onDropCompleted(eventArgs) { /* Your code */ }
uIElement.addEventListener("dropcompleted", onDropCompleted);
uIElement.removeEventListener("dropcompleted", onDropCompleted);
- or -
uIElement.ondropcompleted = onDropCompleted;
Public Custom Event DropCompleted As TypedEventHandler(Of UIElement, DropCompletedEventArgs)
<uiElement DropCompleted="eventhandler"/>
イベントの種類
注釈
ドラッグした要素がドロップされると、 DragStarting の後にドラッグ 元の要素で DropCompleted が発生します。 このイベントを処理し、イベント引数の DropResult に基づいて適切なアクションを実行できます。 たとえば、DropResult が Move の場合は、元のドラッグ ソースを削除する必要があります。
DragStarting と DropCompleted は、 CanDrag が true の場合にのみ発生します。
DropCompleted はルーティング イベントです。 ルーティング イベントの概念の詳細については、「 イベントとルーティング イベントの概要」を参照してください。