我正在使用VS 2015中的数据模板绑定开发一个简单的UWP项目。当我尝试指定Datatemplate的类型时,我收到错误。
XAML:
<Page x:Name="RootPage"
x:Class="Adaptive_News_Layout.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Adaptive_News_Layout"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" FontSize="22" >
<SplitView x:Name="MySplitView" Grid.Row="1" DisplayMode="CompactOverlay" Background="LightGray" OpenPaneLength="200" >
<SplitView.Pane>
<ListView x:Name="MyListview" ItemsSource="{x:Bind NavigationItems}" >
<ListView.ItemTemplate>
<DataTemplate x:DataType="local:NavItem" >
<StackPanel Orientation="Horizontal">
<RelativePanel>
<Button x:Name="Icon" FontFamily="Segoe MDL2 Assets" Content="{x:Bind ButtonIcon}" Width="50" Height="50"/>
<TextBlock x:Name="Section" Text="{x:Bind SectionTitle}" RelativePanel.RightOf="Icon" />
</RelativePanel>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
这是班级:
namespace Adaptive_News_Layout
{
public class NavItem
{
public string ButtonIcon { get; set; }
public string SectionTitle { get; set; }
}
}
错误如下:名称“NavItem”在名称空间“using:Adaptive_News_Layout”中不存在
答案 0 :(得分:3)
我弄清楚问题是什么。这是Visual Studio 2015中的一个小故障。在XAML中添加命名空间后,最好编译/测试运行程序,否则您将遇到此问题。要解决它:
答案 1 :(得分:1)
对我有用的是在命名空间引用中指定程序集,即:
xmlns:the_namespace="clr-namespace:the_namespace"
- 产生上述错误。
xmlns:the_namespace="clr-namespace:the_namespace;assembly=the_assembly"
- 效果很好。
答案 2 :(得分:0)
我发现我无意中在子命名空间中定义了相同的对象。一旦摆脱了第二个定义,这个问题就消失了
答案 3 :(得分:-1)
你必须在ypur Xaml文件顶部的部分声明'local'命名空间。 您将看到许多格式为xmlns的命名空间:Name =“value” 使用Name = local和Value作为命名空间
添加名称空间