共用方式為


AppNotificationTextProperties 建構函式

定義

初始化 AppNotificationTextProperties 類別的新實例,這個類別會指定文字的顯示和當地語系化屬性。

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

範例

下列範例示範如何將文本塊新增至應用程式通知的 XML 承載。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.", new AppNotificationTextProperties().SetMaxLines(2))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

產生的 XML 承載:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text hint-maxLines='2'>Notification text.</text>
        </binding>
    </visual>
</toast>

備註

呼叫 AppNotificationBuilder.AddText,將具有文字屬性的文字新增至應用程式通知。

適用於