다음을 통해 공유


TileUpdater.Update(TileNotification) 메서드

정의

타일에 콘텐츠 또는 모양 변경 내용을 적용합니다.

public:
 virtual void Update(TileNotification ^ notification) = Update;
void Update(TileNotification const& notification);
public void Update(TileNotification notification);
function update(notification)
Public Sub Update (notification As TileNotification)

매개 변수

notification
TileNotification

타일의 콘텐츠에 대한 새 XML 정의를 제공하는 개체입니다.

예제

다음 예제에서는 앱의 타일에 알림을 보내는 데 사용되는 업데이트를 보여 드립니다.

function sendTileTextNotification() {
    var Notifications = Windows.UI.Notifications;

    // Get an XML DOM version of a specific template by using getTemplateContent.
    var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWide310x150Text03);

    // You will need to look at the template documentation to know how many text fields a particular template has.
    // Get the text attribute for this template and fill it in.
    var tileAttributes = tileXml.getElementsByTagName("text");
    tileAttributes[0].appendChild(tileXml.createTextNode("Hello World!"));

    // Create the notification from the XML.
    var tileNotification = new Notifications.TileNotification(tileXml);

    // Send the notification to the calling app's tile.
    Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);
}

적용 대상

추가 정보