次の方法で共有


AppNotificationComboBox.SelectedItem プロパティ

定義

アプリ通知コンボ ボックスの選択した項目を取得または設定します。

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

プロパティ値

String

Platform::String

winrt::hstring

選択した項目の 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 プロパティを使用して、コンボ ボックスに項目を追加します。

AppNotificationBuilder API を使用してアプリ通知用の UI を作成する方法については、「アプリ通知コンテンツ参照してください。

アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。

適用対象