다음을 통해 공유


EdgeGesture.Starting 이벤트

정의

사용자가 에지 기반 UI를 소환하거나 해제하는 작업을 시작할 때 발생합니다.

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

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

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

이벤트 유형

설명

이 이벤트는 터치 조작에서만 발생합니다. 에지 기반 UI의 키보드 호출에는 이 이벤트가 포함되지 않습니다. Start 이벤트는 항상 Completed 또는 Canceled 이벤트 뒤에 잇습니다.

이 이벤트에 대한 처리기가 호출되면 앱을 호출하여 작업 취소를 금지하는 두 가지 작업 중 하나를 수행할 수 있습니다. 즉, 해당 UI가 현재 표시되지 않으면 에지 기반 UI를 표시하거나 표시되는 경우 UI를 숨길 수 있습니다.

적용 대상

추가 정보