Partager via


ApplicationViewSwitcher.SwitchAsync Méthode

Définition

Surcharges

SwitchAsync(Int32)

Bascule visuellement la fenêtre d’appel (vue application) vers une autre fenêtre.

SwitchAsync(Int32, Int32)

Bascule visuellement la fenêtre d’appel (vue d’application) vers une fenêtre spécifiée.

SwitchAsync(Int32, Int32, ApplicationViewSwitchingOptions)

Effectue une transition visuelle de la fenêtre d’appel (vue application) vers une fenêtre spécifiée.

SwitchAsync(Int32)

Bascule visuellement la fenêtre d’appel (vue application) vers une autre fenêtre.

public:
 static IAsyncAction ^ SwitchAsync(int viewId);
/// [Windows.Foundation.Metadata.Overload("SwitchAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction SwitchAsync(int const& viewId);
[Windows.Foundation.Metadata.Overload("SwitchAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction SwitchAsync(int viewId);
function switchAsync(viewId)
Public Shared Function SwitchAsync (viewId As Integer) As IAsyncAction

Paramètres

viewId
Int32

int

ID de la fenêtre en cours de préparation pour l’affichage.

Retours

Résultats asynchrones de l’opération. Utilisez cette option pour déterminer quand l’appel asynchrone est terminé.

Attributs

Remarques

Cette méthode ne peut être appelée qu’à partir du thread Application Single-Threaded Apartment (ASTA) de la fenêtre appelante actuellement affichée (interface utilisateur principale).

Contrairement à SwitchAsync(System.Int32 toViewId, System.Int32 fromViewId), cette méthode déduit fromViewId via l’appel du thread ASTA.

Voir aussi

S’applique à

SwitchAsync(Int32, Int32)

Bascule visuellement la fenêtre d’appel (vue d’application) vers une fenêtre spécifiée.

public:
 static IAsyncAction ^ SwitchAsync(int toViewId, int fromViewId);
/// [Windows.Foundation.Metadata.Overload("SwitchFromViewAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction SwitchAsync(int const& toViewId, int const& fromViewId);
[Windows.Foundation.Metadata.Overload("SwitchFromViewAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction SwitchAsync(int toViewId, int fromViewId);
function switchAsync(toViewId, fromViewId)
Public Shared Function SwitchAsync (toViewId As Integer, fromViewId As Integer) As IAsyncAction

Paramètres

toViewId
Int32

int

ID de la fenêtre en cours de préparation pour l’affichage.

fromViewId
Int32

int

ID de la fenêtre appelante, actuellement affichée.

Retours

Résultats asynchrones de l’opération. Utilisez cette option pour déterminer quand l’appel asynchrone est terminé.

Attributs

Remarques

Contrairement à SwitchAsync(System.Int32 viewId), cette méthode spécifie fromViewId et libère l’appelant de l’exécution de l’appel sur le thread Application Single-Threaded Apartment (ASTA) de la vue « from ». En passant explicitement le même ID d’affichage que celui déduit via l’appel SwitchAsync(Int32), le résultat des appels est identique.

Voir aussi

S’applique à

SwitchAsync(Int32, Int32, ApplicationViewSwitchingOptions)

Effectue une transition visuelle de la fenêtre d’appel (vue application) vers une fenêtre spécifiée.

public:
 static IAsyncAction ^ SwitchAsync(int toViewId, int fromViewId, ApplicationViewSwitchingOptions options);
/// [Windows.Foundation.Metadata.Overload("SwitchFromViewWithOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction SwitchAsync(int const& toViewId, int const& fromViewId, ApplicationViewSwitchingOptions const& options);
[Windows.Foundation.Metadata.Overload("SwitchFromViewWithOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction SwitchAsync(int toViewId, int fromViewId, ApplicationViewSwitchingOptions options);
function switchAsync(toViewId, fromViewId, options)
Public Shared Function SwitchAsync (toViewId As Integer, fromViewId As Integer, options As ApplicationViewSwitchingOptions) As IAsyncAction

Paramètres

toViewId
Int32

int

ID de la fenêtre en cours de préparation pour l’affichage.

fromViewId
Int32

int

ID de la fenêtre appelante, actuellement affichée.

options
ApplicationViewSwitchingOptions

Options pour les comportements de transition d’affichage.

Retours

Résultats asynchrones de l’opération. Utilisez cette option pour déterminer quand l’appel asynchrone est terminé.

Attributs

Remarques

Contrairement à SwitchAsync(System.Int32 viewId), cette méthode spécifie fromViewId et libère l’appelant de l’exécution de l’appel sur le thread Application Single-Threaded Apartment (ASTA) de la vue « from ». En passant explicitement le même ID d’affichage que celui déduit via l’appel SwitchAsync(Int32), le résultat des appels est identique.

Voir aussi

S’applique à