我已经正确地更改了我的xaml页面的名称空间,但不知何故VS没有获得名称空间。我尝试按照别人建议的方式做到这一点,仍然收到此错误, “名称”LayoutAwarePage“在名称空间”使用:Inventory.Common“中不存在。
<common:LayoutAwarePage
x:Name="pageRoot"
x:Class="Inventory.MainPage"
DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Inventory"
xmlns:common="using:Inventory.Common"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
我的主页面从LayoutAwarePage扩展,此xaml位于公共文件夹内。项目名称为库存。