使用 XAML 设计器时出现 XamlParseException
XamlParseException when using the XAML Designer
重要:请考虑下面关闭的 .xaml 代码中的每个标签
我到处搜索答案,但本网站(或 MSDN 网站)中的 none 个问题解决了它。每次我创建一个新的 Windows Phone 8.1 项目时,我都会得到 XamlParseException
,即使我选择了 Blank App 项目。我会列出我尝试过的所有内容。
- 重新安装 VS 2015
- 在没有 SDK 的情况下重新安装 VS 2015,稍后使用模拟器下载它
- 在 Windows
上启用开发者模式
- 禁用项目代码
- 使用自动编辑器选择器和 XAML Designer
打开 .xaml 文件
- 在选项中启用XAML设计器,当然
- 更新Windows 10(注意:我无法升级到1809,我卡在1803)
- 在 BIOS 上启用管理程序
- 重启电脑
- 在项目上手动添加 'ThemeResources.xaml'
- 构建、重建和清理解决方案
- 使用不同的 .NET Framework 版本
这是我的 App.xaml 代码:
<Application
x:Class="App2.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App2">
这是我的 MainPage.xaml 代码:
<Page
x:Class="App2.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App2"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
</Grid>
我只是通过更新到 Windows 10 1089 来让它工作,不要忘记在升级后启用开发者模式,因为 "Sideload Apps" 是不够的。
重要:请考虑下面关闭的 .xaml 代码中的每个标签
我到处搜索答案,但本网站(或 MSDN 网站)中的 none 个问题解决了它。每次我创建一个新的 Windows Phone 8.1 项目时,我都会得到 XamlParseException
,即使我选择了 Blank App 项目。我会列出我尝试过的所有内容。
- 重新安装 VS 2015
- 在没有 SDK 的情况下重新安装 VS 2015,稍后使用模拟器下载它
- 在 Windows 上启用开发者模式
- 禁用项目代码
- 使用自动编辑器选择器和 XAML Designer 打开 .xaml 文件
- 在选项中启用XAML设计器,当然
- 更新Windows 10(注意:我无法升级到1809,我卡在1803)
- 在 BIOS 上启用管理程序
- 重启电脑
- 在项目上手动添加 'ThemeResources.xaml'
- 构建、重建和清理解决方案
- 使用不同的 .NET Framework 版本
这是我的 App.xaml 代码:
<Application
x:Class="App2.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App2">
这是我的 MainPage.xaml 代码:
<Page
x:Class="App2.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App2"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
</Grid>
我只是通过更新到 Windows 10 1089 来让它工作,不要忘记在升级后启用开发者模式,因为 "Sideload Apps" 是不够的。