共用方式為


AppNotificationComboBox 類別

定義

代表顯示在應用程式通知上的下拉式方塊。

public ref class AppNotificationComboBox sealed
/// [Windows.Foundation.Metadata.Activatable(Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBoxFactory, 65536, "Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class AppNotificationComboBox final
[Windows.Foundation.Metadata.Activatable(typeof(Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBoxFactory), 65536, "Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class AppNotificationComboBox
function AppNotificationComboBox(id)
Public NotInheritable Class AppNotificationComboBox
繼承
Object Platform::Object IInspectable AppNotificationComboBox
屬性

範例

下列範例示範將下拉式方塊新增至應用程式通知的 XML 承載。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddComboBox(new AppNotificationComboBox("combobox_id")
        .SetTitle("Select an item:")
        .AddItem("id_one", "Item one")
        .AddItem("id_two", "Item two")
        .SetSelectedItem("id_one"))
    .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>

備註

呼叫 AppNotificationBuilder.AddComboBox,將下拉式方塊新增至應用程式通知的 XML 承載。 最多可以新增5個輸入至單一應用程式通知。

建構函式

AppNotificationComboBox(String)

使用指定的標識碼,初始化 AppNotificationComboBox 類別的新實例。

屬性

Items

取得或設定 AppNotificationComboBox 的專案

SelectedItem

取得或設定應用程式通知下拉式方塊的選取專案。

Title

取得或設定應用程式通知下拉式方塊的標題。

方法

AddItem(String, String)

將專案新增至 AppNotificationComboBox

SetSelectedItem(String)

設定應用程式通知下拉式方塊的選取專案。

SetTitle(String)

設定應用程式通知下拉式方塊的標題。

適用於