다음을 통해 공유


AppNotificationTextProperties 클래스

정의

앱 알림에 표시되는 텍스트의 표시 및 지역화 속성을 지정합니다.

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
상속
Object Platform::Object IInspectable 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 클래스의 새 instance 초기화합니다.

속성

IncomingCallAlignment

연결된 텍스트가 들어오는 호출에 맞게 정렬되는지 여부를 지정하는 값을 가져오거나 설정합니다.

Language

연결된 텍스트의 언어를 지정하는 값을 가져오거나 설정합니다.

MaxLines

연결된 텍스트에 걸쳐야 하는 최대 줄 수를 가져오거나 설정합니다.

메서드

SetIncomingCallAlignment()

연결된 텍스트가 들어오는 호출 맞춤과 함께 표시되는지 여부를 지정하는 값을 설정합니다.

SetLanguage(String)

연결된 텍스트의 언어를 지정하는 값을 설정합니다.

SetMaxLines(Int32)

연결된 텍스트에 걸쳐야 하는 최대 줄 수를 설정합니다.

적용 대상