AppNotificationComboBox(String) Konstruktor
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der AppNotificationComboBox Klasse mit der angegebenen ID.
public:
AppNotificationComboBox(Platform::String ^ id);
AppNotificationComboBox(winrt::hstring const& id);
public AppNotificationComboBox(string id);
function AppNotificationComboBox(id)
Public Sub New (id As String)
Parameter
- id
-
String
Platform::String
winrt::hstring
Der Bezeichner für das Kombinationsfeld.
Beispiele
Das folgende Beispiel veranschaulicht die Initialisierung eines Kombinationsfelds für App-Benachrichtigungen.
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
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.