平铺图像未显示

时间:2015-02-14 12:43:50

标签: windows windows-phone-8.1 winrt-xaml live-tile

我尝试使用templatew TileWide310x150SmallImageAndText02设置我的主图块。我查看了示例代码并将其从中取出:

            ITileSquare310x310SmallImagesAndTextList04 tileContent =
            TileContentFactory.CreateTileSquare310x310SmallImagesAndTextList04();
        tileContent.Image1.Src = "ms-appx:///Assets/Logo.png";
        tileContent.TextHeading1.Text = "Cashflow";
        tileContent.TextWrap1.Text = "Income: 500";
        tileContent.TextWrap2.Text = "Spending: 400";
        tileContent.TextWrap3.Text = "Earnings: 200";

        // Create a notification for the Wide310x150 tile using one of the available templates for the size.
        ITileWide310x150SmallImageAndText02 wide310x150Content =
            TileContentFactory.CreateTileWide310x150SmallImageAndText02();
        wide310x150Content.Image.Src = "ms-appx:///Assets/Logo.png";
        wide310x150Content.TextHeading.Text = "Cashflow";
        wide310x150Content.TextBody1.Text = "Income: 500";
        wide310x150Content.TextBody2.Text = "Spending: 400";
        wide310x150Content.TextBody3.Text = "Earnings: 200";

        // Create a notification for the Square150x150 tile using one of the available templates for the size.
        ITileSquare150x150PeekImageAndText01 square150x150Content =
            TileContentFactory.CreateTileSquare150x150PeekImageAndText01();
        square150x150Content.Image.Src = "ms-appx:///Assets/Logo.png";
        square150x150Content.TextHeading.Text = "Cashflow";
        square150x150Content.TextBody1.Text = "Income: 500";
        square150x150Content.TextBody2.Text = "Spending: 300";
        square150x150Content.TextBody3.Text = "Earnings: 200";

        // Attach the Square150x150 template to the Wide310x150 template.
        wide310x150Content.Square150x150Content = square150x150Content;

        // Attach the Wide310x150 template to the Square310x310 template.
        tileContent.Wide310x150Content = wide310x150Content;

        // Send the notification to the application? tile.
            TileUpdateManager.CreateTileUpdaterForApplication().Update(tileContent.CreateNotification());

这将在150x150尺寸中正确显示图块,但不在宽图中。然后只显示文本而不显示图像。

这是一个截图:

enter image description here

感谢您的帮助! NPadrutt

1 个答案:

答案 0 :(得分:1)

SmallImageAndText模板仅在Windows上显示图像,而不是在手机上显示。

请参阅template catalog以获取此处的direfences。

Tipp:模板目录位于aka.ms/tiletemplates

相关问题