次の方法で共有


AppInstance.Activated イベント

定義

Microsoft.Windows.AppLifecycle.AppInstance.RedirectActivationToAsync経由でリダイレクトされたアクティブ化に対して発生します。

/// [Windows.Foundation.Metadata.Experimental]
/// [add: Windows.Foundation.Metadata.Experimental]
/// [remove: Windows.Foundation.Metadata.Experimental]
// Register
event_token Activated(EventHandler<AppActivationArguments> const& handler) const;

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

// Revoke with event_revoker
AppInstance::Activated_revoker Activated(auto_revoke_t, EventHandler<AppActivationArguments> const& handler) const;
// Register
event_token Activated(EventHandler<AppActivationArguments> const& handler) const;

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

// Revoke with event_revoker
AppInstance::Activated_revoker Activated(auto_revoke_t, EventHandler<AppActivationArguments> const& handler) const;
[Windows.Foundation.Metadata.Experimental]
[add: Windows.Foundation.Metadata.Experimental]
[remove: Windows.Foundation.Metadata.Experimental]
public event System.EventHandler<AppActivationArguments> Activated;
public event System.EventHandler<AppActivationArguments> Activated;
function onActivated(eventArgs) { /* Your code */ }
appInstance.addEventListener("activated", onActivated);
appInstance.removeEventListener("activated", onActivated);
- or -
appInstance.onactivated = onActivated;
Public Custom Event Activated As EventHandler(Of AppActivationArguments) 

イベントの種類

属性

注釈

このイベントは、リダイレクトされたアクティブ化に対してのみ発生します。 それ以外の場合は、Microsoft.Windows.AppLifecycle.AppInstance.GetActivatedEventArgs を使用するか、Windows.ApplicationModel.AppInstance.GetActivatedEventArgs を してアクティブ化時の引数を取得する必要があります。

適用対象