共用方式為


AppNotificationButton 建構函式

定義

多載

AppNotificationButton()

初始化 AppNotificationButton 類別的新實例。

AppNotificationButton(String)

使用指定的按鈕文字,初始化 AppNotificationButton 類別的新實例。

AppNotificationButton()

初始化 AppNotificationButton 類別的新實例。

public:
 AppNotificationButton();
 AppNotificationButton();
public AppNotificationButton();
function AppNotificationButton()
Public Sub New ()

範例

下列範例顯示這個方法的使用方式,將按鈕新增至應用程式通知。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton()
        .AddArgument("action", "reply"))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

產生的 XML 承載:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='' arguments='action=reply'/>
    </actions>
</toast>

備註

呼叫 AppNotificationBuilder.AddButton,將 AppNotificationButton 新增至應用程式通知的 xml 承載。

如需使用 AppNotificationBuilder API 來建立應用程式通知 UI 的指引,請參閱 應用程式通知內容

如需應用程式通知 XML 架構的參考資訊,請參閱 應用程式通知內容架構

適用於

AppNotificationButton(String)

使用指定的按鈕文字,初始化 AppNotificationButton 類別的新實例。

public:
 AppNotificationButton(Platform::String ^ content);
 AppNotificationButton(winrt::hstring const& content);
public AppNotificationButton(string content);
function AppNotificationButton(content)
Public Sub New (content As String)

參數

content
String

Platform::String

winrt::hstring

按鈕上顯示的文字。

範例

下列範例顯示這個方法的使用方式,將按鈕新增至應用程式通知。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton("Reply")
        .AddArgument("action", "reply"))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

產生的 XML 承載:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='Reply' arguments='action=reply'/>
    </actions>
</toast>

備註

呼叫 AppNotificationBuilder.AddButton,將 AppNotificationButton 新增至應用程式通知的 xml 承載。

如需使用 AppNotificationBuilder API 來建立應用程式通知 UI 的指引,請參閱 應用程式通知內容

如需應用程式通知 XML 架構的參考資訊,請參閱 應用程式通知內容架構

適用於