AppNotificationComboBox.Items 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 les éléments d’un AppNotificationComboBox
public:
property IMap<Platform::String ^, Platform::String ^> ^ Items { IMap<Platform::String ^, Platform::String ^> ^ get(); void set(IMap<Platform::String ^, Platform::String ^> ^ value); };
IMap<winrt::hstring, winrt::hstring const&> Items();
void Items(IMap<winrt::hstring, winrt::hstring const&> value);
public IDictionary<string,string> Items { get; set; }
var iMap = appNotificationComboBox.items;
appNotificationComboBox.items = iMap;
Public Property Items As IDictionary(Of String, String)
Valeur de propriété
Dictionnaire de paires clé/valeur représentant les ID et texte d’affichage des éléments de zone de liste modifiable.
Exemples
L’exemple suivant illustre l’utilisation de cette propriété pour ajouter des éléments à la zone de liste déroulante de notification de l’application.
var comboBox = new AppNotificationComboBox("combobox_id");
comboBox.Title = "Select an item:";
comboBox.Items = new Dictionary<string, string> { { "id_one", "Item one" }, { "id_two", "Item two" } };
comboBox.SelectedItem = "id_one";
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddComboBox(comboBox)
.BuildNotification();
AppNotificationManager.Default.Show(notification);
Charge utile XML résultante si le scénario urgent est pris en charge :
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<input id='combobox_id' type='selection' title='Select an item:' defaultInput='id_one'>
<selection id='id_one' content='Item one'/>
<selection id='id_two' content='Item two'/>
</input>
</actions>
</toast>
Remarques
Vous pouvez également ajouter des éléments à une zone de liste déroulante de notification d’application en appelant AppNotificationComboBox.AddItem.
Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder
Pour plus d’informations sur le schéma XML pour les notifications d’application, consultez schéma de contenu de notification d’application.