Partager via


AppNotificationButton Constructeurs

Définition

Surcharges

AppNotificationButton()

Initialise une nouvelle instance de la classe AppNotificationButton.

AppNotificationButton(String)

Initialise une nouvelle instance de la classe AppNotificationButton avec le texte du bouton spécifié.

AppNotificationButton()

Initialise une nouvelle instance de la classe AppNotificationButton.

public:
 AppNotificationButton();
 AppNotificationButton();
public AppNotificationButton();
function AppNotificationButton()
Public Sub New ()

Exemples

L’exemple suivant illustre l’utilisation de cette méthode pour ajouter un bouton à une notification d’application.

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton()
        .AddArgument("action", "reply"))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

Charge utile XML résultante :

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='' arguments='action=reply'/>
    </actions>
</toast>

Remarques

Ajoutez un AppNotificationButton à la charge utile xml pour une notification d’application en appelant AppNotificationBuilder.AddButton.

Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder pour créer l’interface utilisateur pour les notifications d’application, consultez Contenu des notifications d’application.

Pour obtenir des informations de référence sur le schéma XML pour les notifications d’application, consultez Schéma de contenu de notification d’application.

S’applique à

AppNotificationButton(String)

Initialise une nouvelle instance de la classe AppNotificationButton avec le texte du bouton spécifié.

public:
 AppNotificationButton(Platform::String ^ content);
 AppNotificationButton(winrt::hstring const& content);
public AppNotificationButton(string content);
function AppNotificationButton(content)
Public Sub New (content As String)

Paramètres

content
String

Platform::String

winrt::hstring

Texte affiché sur le bouton.

Exemples

L’exemple suivant illustre l’utilisation de cette méthode pour ajouter un bouton à une notification d’application.

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton("Reply")
        .AddArgument("action", "reply"))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

Charge utile XML résultante :

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='Reply' arguments='action=reply'/>
    </actions>
</toast>

Remarques

Ajoutez un AppNotificationButton à la charge utile xml pour une notification d’application en appelant AppNotificationBuilder.AddButton.

Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder pour créer l’interface utilisateur pour les notifications d’application, consultez Contenu des notifications d’application.

Pour obtenir des informations de référence sur le schéma XML pour les notifications d’application, consultez Schéma de contenu de notification d’application.

S’applique à