AppNotificationButton.Content Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le texte du bouton d’un AppNotificationButton.
public:
property Platform::String ^ Content { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Content();
void Content(winrt::hstring value);
public string Content { get; set; }
var string = appNotificationButton.content;
appNotificationButton.content = string;
Public Property Content As String
Valeur de propriété
Chaîne contenant le texte du bouton.
Exemples
L’exemple suivant montre l’utilisation de cette propriété pour définir le texte du bouton d’un bouton de notification d’application.
var args = new Dictionary<string, string>() { { "action", "reply" }, { "arg2", "value" } };
var button = new AppNotificationButton();
button.Content = "Reply";
button.Arguments = args;
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(button)
.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;arg2=value'/>
</actions>
</toast>
Remarques
Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder pour créer l’interface utilisateur pour les notifications d’application, consultez contenu de notification d’application.
Pour plus d’informations sur le schéma XML pour les notifications d’application, consultez schéma de contenu de notification d’application.