AppNotificationComboBox(String) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the AppNotificationComboBox class with the specified ID.
public:
AppNotificationComboBox(Platform::String ^ id);
AppNotificationComboBox(winrt::hstring const& id);
public AppNotificationComboBox(string id);
function AppNotificationComboBox(id)
Public Sub New (id As String)
Parameters
- id
-
String
Platform::String
winrt::hstring
The identifier for the combo box.
Examples
The following example demonstrates the initialization of an app notification combo box.
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);
The resulting XML payload if the urgent scenario is supported:
<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>
Remarks
For guidance on using the AppNotificationBuilder APIs to create the UI for app notifications, see App notification content.
For reference information about the XML schema for app notifications, see App notification content schema.