共用方式為


EdgeGesture.Completed 事件

定義

引發 ,表示使用者已成功擷取或關閉邊緣型 UI。 當使用者從啟用觸控的螢幕或使用者按下鍵盤上的 Win+Z 時,就會發生此情況。

// Register
event_token Completed(TypedEventHandler<EdgeGesture, EdgeGestureEventArgs const&> const& handler) const;

// Revoke with event_token
void Completed(event_token const* cookie) const;

// Revoke with event_revoker
EdgeGesture::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<EdgeGesture, EdgeGestureEventArgs const&> const& handler) const;
public event TypedEventHandler<EdgeGesture,EdgeGestureEventArgs> Completed;
function onCompleted(eventArgs) { /* Your code */ }
edgeGesture.addEventListener("completed", onCompleted);
edgeGesture.removeEventListener("completed", onCompleted);
- or -
edgeGesture.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of EdgeGesture, EdgeGestureEventArgs) 

事件類型

備註

此事件會因為觸控或鍵盤輸入而發生。 在鍵盤輸入 (Win+Z) 的情況下,這是唯一引發的事件。 在觸控輸入的情況下,當使用者在撥動結束時隨即放開手指,且位於 開始 事件之前時,就會發生。

呼叫此事件的處理常式時,應用程式可以執行下列兩件事之一:如果目前未顯示該 UI,則顯示其邊緣型 UI,或在顯示 UI 時隱藏 UI。

適用於

另請參閱