4

我正在使用以下代码获取自定义用户控件,从中制作位图,然后将其保存到隔离存储中,以用于 WP8 Live Tile。

public static void UpdateTile()
{
    var frontTile = new LiveTileRegular(); // Custom Control
    frontTile.Measure(new Size(173, 173));
    frontTile.Arrange(new Rect(0, 0, 173, 173));

    var bmp = new WriteableBitmap(173, 173);
    bmp.Render(frontTile, null);
    bmp.Invalidate();

    const string filename = "/LiveTiles/LiveTileRegular.jpg";

    using (var isf = IsolatedStorageFile.GetUserStoreForApplication())
    {
        if (!isf.DirectoryExists("/LiveTiles"))
        {
            isf.CreateDirectory("/LiveTiles");
        }

        using (var stream = isf.OpenFile(filename, FileMode.OpenOrCreate))
        {
            bmp.SaveJpeg(stream, 173, 173, 0, 100);
        }

        Debug.WriteLine("Image Exists: " + (isf.FileExists(filename) ? "Yes" : "No")); // Displays "Yes"
    }

    ShellTile.ActiveTiles.First().Update(new FlipTileData
    {
        Title = "Title",
        BackgroundImage = new Uri("isostore:" + filename, UriKind.Absolute),
    }); // Throws a NotSupportedException
}

使用非常非描述性的消息传递到方法上NotSupportedExceptionShellTile.ActiveTiles.First().Update()

有什么我明显做错了吗?

4

2 回答 2

11

“TargetInnvocationException”异常实际上隐藏了我在ShellTile.ActiveTiles.First().Update()移出 UI 线程后发现的“NotSupportedException”异常的根本问题。

异常仍然没有描述问题是什么,但是在翻阅了不同的论坛和文档之后,我发现动态创建的图像的路径在与 Live Tiles 一起使用时非常重要。

如果您将隔离存储中的图像用于动态磁贴或外壳磁贴,则基本文件夹必须是

/共享/外壳内容

改变后

const string filename = "/LiveTiles/LiveTileRegular.jpg";

const string filename = "/Shared/ShellContent/LiveTileRegular.jpg";

一切正常。

我们 Windows Phone 开发人员能否获得更好的异常消息?!?:)

于 2013-03-23T17:18:36.287 回答
0

我相信ShellTile.ActiveTiles .First(orDefault) 是应用程序磁贴,而不是辅助固定磁贴。尝试使用 Skip(1) 从第二个图块开始调用 Update。

于 2013-03-22T20:48:47.357 回答