0

我对这个错误有点困惑,只要它没有给我任何关于什么是错误的信息,我也找不到任何关于它的信息。这是错误的屏幕截图:

在此处输入图像描述

这发生在我将 SwapChainBackgroundPanel 包装在 Page 中之后,因为它导致 Windows 8 平板电脑模拟器出现问题。

有什么想法可能会在这里发生吗?我有点失落。任何帮助是极大的赞赏!(这是一个 MonoGame XAML 项目)

4

1 回答 1

0

我发现了为什么这是一个问题;这很简单。如果您的 SwapChainBackgroundPanel 中有程序集信息,请将其移动到“页面”标签中。这将解决问题。记住也要从 SwapChainBackgroundPanel 中删除引用。换句话说:

  <Page 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

以前在 SwapChainBackgroundPanel 中

于 2012-12-22T07:33:18.643 回答