다음을 통해 공유


AppNotificationBuilder.AddTextBox 메서드

정의

오버로드

AddTextBox(String)

앱 알림에 대한 XML 페이로드에 텍스트 상자를 추가합니다.

AddTextBox(String, String, String)

지정된 자리 표시자 텍스트와 제목이 있는 텍스트 상자를 앱 알림의 XML 페이로드에 추가합니다.

AddTextBox(String)

앱 알림에 대한 XML 페이로드에 텍스트 상자를 추가합니다.

public:
 virtual AppNotificationBuilder ^ AddTextBox(Platform::String ^ id) = AddTextBox;
/// [Windows.Foundation.Metadata.Overload("AddTextBox")]
AppNotificationBuilder AddTextBox(winrt::hstring const& id);
[Windows.Foundation.Metadata.Overload("AddTextBox")]
public AppNotificationBuilder AddTextBox(string id);
function addTextBox(id)
Public Function AddTextBox (id As String) As AppNotificationBuilder

매개 변수

id
String

Platform::String

winrt::hstring

텍스트 상자의 ID입니다.

반환

추가 메서드 호출을 연결할 수 있도록 AppNotificationBuilder instance 반환합니다.

특성

예제

다음 예제에서는 앱 알림에 대한 XML 페이로드에 텍스트 상자를 추가하는 방법을 보여 줍니다.

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddTextBox("textBox")
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

결과 XML 페이로드:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <input id='textBox' type='text'/>
    </actions>
</toast>

설명

단일 알림에 최대 5개의 입력 컨트롤을 추가할 수 있습니다.

AppNotificationBuilder API를 사용하여 앱 알림에 대한 UI를 만드는 방법에 대한 지침은 앱 알림 콘텐츠를 참조하세요.

앱 알림에 대한 XML 스키마에 대한 참조 정보는 앱 알림 콘텐츠 스키마를 참조하세요.

적용 대상

AddTextBox(String, String, String)

지정된 자리 표시자 텍스트와 제목이 있는 텍스트 상자를 앱 알림의 XML 페이로드에 추가합니다.

public:
 virtual AppNotificationBuilder ^ AddTextBox(Platform::String ^ id, Platform::String ^ placeHolderText, Platform::String ^ title) = AddTextBox;
/// [Windows.Foundation.Metadata.Overload("AddTextBox2")]
AppNotificationBuilder AddTextBox(winrt::hstring const& id, winrt::hstring const& placeHolderText, winrt::hstring const& title);
[Windows.Foundation.Metadata.Overload("AddTextBox2")]
public AppNotificationBuilder AddTextBox(string id, string placeHolderText, string title);
function addTextBox(id, placeHolderText, title)
Public Function AddTextBox (id As String, placeHolderText As String, title As String) As AppNotificationBuilder

매개 변수

id
String

Platform::String

winrt::hstring

텍스트 상자의 ID입니다.

placeHolderText
String

Platform::String

winrt::hstring

텍스트 상자에 표시되는 자리 표시자 텍스트입니다.

title
String

Platform::String

winrt::hstring

텍스트 상자 위에 표시되는 제목 텍스트입니다.

반환

추가 메서드 호출을 연결할 수 있도록 AppNotificationBuilder instance 반환합니다.

특성

예제

다음 예제에서는 앱 알림에 대한 XML 페이로드에 텍스트 상자를 추가하는 방법을 보여 줍니다.

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddTextBox("textBox", "Placeholder text", "Title")
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

결과 XML 페이로드:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <input id='textBox' type='text' placeHolderContent='Placeholder text' title='Title'/>
    </actions>
</toast>

설명

단일 알림에 최대 5개의 입력 컨트롤을 추가할 수 있습니다.

AppNotificationBuilder API를 사용하여 앱 알림에 대한 UI를 만드는 방법에 대한 지침은 앱 알림 콘텐츠를 참조하세요.

앱 알림에 대한 XML 스키마에 대한 참조 정보는 앱 알림 콘텐츠 스키마를 참조하세요.

적용 대상