AppNotificationComboBox.Title プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知コンボ ボックスのタイトルを取得または設定します。
public:
property Platform::String ^ Title { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Title();
void Title(winrt::hstring value);
public string Title { get; set; }
var string = appNotificationComboBox.title;
appNotificationComboBox.title = string;
Public Property Title As String
プロパティ値
コンボ ボックスのタイトルを含む文字列。
例
次の例では、このプロパティを使用してアプリ通知コンボ ボックスのタイトルを設定する方法を示します。
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.SetTitle プロパティを使用してタイトルを設定することもできます。
AppNotificationBuilder API を使用してアプリ通知用の UI を作成する方法のガイダンスについては、「アプリ通知コンテンツ」を参照してください。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知 コンテンツ スキーマ」を参照してください。