AppNotificationTextProperties 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定代理程式更新上顯示之文字的顯示和當地語系化屬性。
public ref class AppNotificationTextProperties sealed
/// [Windows.Foundation.Metadata.Activatable(65536, "Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class AppNotificationTextProperties final
[Windows.Foundation.Metadata.Activatable(65536, "Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class AppNotificationTextProperties
function AppNotificationTextProperties()
Public NotInheritable Class AppNotificationTextProperties
- 繼承
- 屬性
範例
下列範例示範如何將文字區塊新增至代理程式更新的 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,將具有文字屬性的文字新增至代理程式更新。
建構函式
AppNotificationTextProperties() |
初始化 AppNotificationTextProperties 類別的新實例,這個類別會指定文字的顯示和當地語系化屬性。 |
屬性
IncomingCallAlignment |
取得或設定值,指定是否為撥入電話對齊相關聯的文字。 |
Language |
取得或設定值,指定相關聯文字的語言。 |
MaxLines |
取得或設定關聯文字應該跨越的最大行數。 |
方法
SetIncomingCallAlignment() |
設定值,指定關聯文字是否以連入呼叫對齊方式顯示。 |
SetLanguage(String) |
設定值,指定相關聯文字的語言。 |
SetMaxLines(Int32) |
設定關聯文字應該跨越的最大行數。 |