Freigeben über


AppNotificationComboBox.SetSelectedItem(String) Methode

Definition

Legt das ausgewählte Element für ein Kombinationsfeld für App-Benachrichtigungen fest.

public:
 virtual AppNotificationComboBox ^ SetSelectedItem(Platform::String ^ id) = SetSelectedItem;
AppNotificationComboBox SetSelectedItem(winrt::hstring const& id);
public AppNotificationComboBox SetSelectedItem(string id);
function setSelectedItem(id)
Public Function SetSelectedItem (id As String) As AppNotificationComboBox

Parameter

id
String

Platform::String

winrt::hstring

Eine Zeichenfolge, die die ID des ausgewählten Elements enthält.

Gibt zurück

Gibt die AppNotificationComboBox Instanz zurück, sodass zusätzliche Methodenaufrufe verkettet werden können.

Beispiele

Im folgenden Beispiel wird die Verwendung dieser Methode veranschaulicht, um das ausgewählte Element für das Kombinationsfeld für die App-Benachrichtigung festzulegen.

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);

Die resultierende XML-Nutzlast, wenn das dringende Szenario unterstützt wird:

<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>

Hinweise

Sie können das ausgewählte Element auch mit der eigenschaft AppNotificationComboBox.SelectedItem festlegen.

Fügen Sie einem Kombinationsfeld Elemente hinzu, indem Sie AppNotificationComboBox.AddItem- oder mit der AppNotificationComboBox.Items-Eigenschaft aufrufen.

Anleitungen zur Verwendung der AppNotificationBuilder--APIs zum Erstellen der Benutzeroberfläche für App-Benachrichtigungen finden Sie unter App-Benachrichtigungsinhalt.

Referenzinformationen zum XML-Schema für App-Benachrichtigungen finden Sie unter App-Benachrichtigungsinhaltsschema.

Gilt für: