AppNotificationComboBox.SelectedItem プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知コンボ ボックスの選択した項目を取得または設定します。
public:
property Platform::String ^ SelectedItem { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring SelectedItem();
void SelectedItem(winrt::hstring value);
public string SelectedItem { get; set; }
var string = appNotificationComboBox.selectedItem;
appNotificationComboBox.selectedItem = string;
Public Property SelectedItem As 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.SetSelectedItem
AppNotificationComboBox.AddItem を呼び出すか、AppNotificationComboBox.Items プロパティを使用して、コンボ ボックスに項目を追加します。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。