今天,当我启动项目时,包含UserControl
的所有观看次数都有Invalid Markup
错误。
<UserControl x:Class="ProjectName.View.LeftMenuControl"
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"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:RaceFlightConfigurator.View"
xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
xmlns:UserControl="clr-namespace:ProjectName.View"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<UserControl:ConnectControl Margin="4"></UserControl:ConnectControl>
</UserControl>
我尝试Rebuild solution
,从设计师处删除Shadow cache
文件夹等,但没有任何帮助......
项目运作良好。
答案 0 :(得分:0)
我找到了解决方案。我在Mac上使用Parallels,我的项目在/Mac/Username/Document
等等。当我将项目移动到C:
路径时,一切正常。