AppNotificationTextProperties 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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,將具有文字屬性的文字新增至應用程式通知。