共用方式為


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

字串,包含所選項目的標識碼。

範例

下列範例示範如何使用此屬性來設定應用程式通知下拉式方塊的選取專案。

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 架構的參考資訊,請參閱 應用程式通知內容架構

適用於