AppNotificationButton.SetIcon(Uri) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 AppNotificationButton的圖示。
public:
virtual AppNotificationButton ^ SetIcon(Uri ^ value) = SetIcon;
AppNotificationButton SetIcon(Uri const& value);
public AppNotificationButton SetIcon(System.Uri value);
function setIcon(value)
Public Function SetIcon (value As Uri) As AppNotificationButton
參數
傳回
傳回 AppNotificationButton 實例,以便鏈結其他方法呼叫。
範例
下列範例示範如何使用此方法來設定應用程式通知按鈕的圖示。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(new AppNotificationButton("Reply")
.AddArgument("action", "reply")
.SetIcon(new Uri("ms-appx:///Images/Reply.png")))
.BuildNotification();
AppNotificationManager.Default.Show(notification);
如果支持緊急案例,則產生的 XML 承載:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply' imageUri='ms-appx:///Images/Reply.png'/>
</actions>
</toast>
備註
您也可以使用 AppNotificationButton.Icon來設定應用程式通知按鈕的圖示。
下列螢幕快照說明使用圖示的應用程式通知按鈕。
支援的映像檔案類型包括:
- .png
- .jpg
- .svg
如需使用 AppNotificationBuilder API 來建立應用程式通知 UI 的指引,請參閱 應用程式通知內容。
如需應用程式通知 XML 架構的參考資訊,請參閱 應用程式通知內容架構。