AppNotificationComboBox.Items プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)
プロパティ値
ID を表し、コンボ ボックス項目のテキストを表示するキーと値のペアのディクショナリ。
例
次の例では、このプロパティを使用してアプリ通知コンボ ボックスに項目を追加する方法を示します。
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);
緊急シナリオがサポートされている場合の結果の XML ペイロード:
<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>
注釈
AppNotificationComboBox.AddItemを呼び出して、アプリ通知コンボ ボックス
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。