我试图从xaml生成自己的自定义磁贴。我已经将一些代码从C ++转换为C#,以便将它集成到我的应用程序中。
基本上我有这种方法:
async Task GenerateHighResTileImage(string inputMarkupFilename, string outputImageFilename, Size size)
{
StorageFolder assetsFolder = await Package.Current.InstalledLocation.GetFolderAsync("Assets");
StorageFile markupStorageFile = await assetsFolder.GetFileAsync(inputMarkupFilename);
string markupContent = await FileIO.ReadTextAsync(markupStorageFile);
Border grid = (Border)XamlReader.Load(markupContent);
await RenderAndSaveToFileAsync(grid, outputImageFilename, (int)size.Width, (int)size.Height);
}
调试器在我试图加载标记的行上停止说:
类型' System.Exception'的第一次机会异常。发生在 BGTask.winmd
附加信息:该应用程序称为接口 为不同的线程编组。 (HRESULT的例外情况:0x8001010E (RPC_E_WRONG_THREAD))
我的瓷砖很简单,因为我只是在测试:
<Border Height="360" Width="360" Padding="12" BorderBrush="White" BorderThickness="4" CornerRadius="2" Background="#00b2f0" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
</Border>
并且能够在markupContent字符串中成功加载它。
代码在C ++中看起来像这样。
task<void> AppTileUpdater::GenerateHighResTileImageUpdateAsync(String^ inputMarkupFilename, String^ outputImageFilename, Size size)
{
return create_task(Package::Current->InstalledLocation->GetFolderAsync("Assets"))
.then([inputMarkupFilename](StorageFolder^ assetsFolder) ->IAsyncOperation<StorageFile^>^ {
return assetsFolder->GetFileAsync(inputMarkupFilename);
}).then([](StorageFile^ markupStorageFile) ->IAsyncOperation<Platform::String^>^ {
return FileIO::ReadTextAsync(markupStorageFile);
}).then([this, outputImageFilename, size](Platform::String^ markupContent){
Border^ border = (Border^) XamlReader::Load(markupContent);
return RenderAndSaveToFileAsync(border, outputImageFilename, (unsigned int) size.Width, (unsigned int) size.Height);
});
}
我错过了什么吗?
编辑 该方法是从运行方法
运行的async public void Run(IBackgroundTaskInstance taskInstance)
{
var deferral = taskInstance.GetDeferral();
taskInstance.Canceled += (s, e) => { };
taskInstance.Progress = 0;
await GenerateHighResTileImage("150x150Tile.xml", "updatedTile.png", new Size(150, 150));
UpdateTile("updatedTile.png");
deferral.Complete();
}
当我在BackgroundTask
之外运行时,代码也可以正常工作答案 0 :(得分:1)
如果您使用的是Silverlight,则需要从默认调度程序[Deployment.Current.Dispatcher.BeginInvoke(...)
]运行代码。如果您使用的是通用应用程序,则需要从XamlRenderingBackgroundTask
派生,但强烈建议您使用C ++以避免内存不足。