0
我試圖將一個類綁定到模板。無法解析DataType MyApp.Model.Paper
<UserControl
x:Class="MyApp.Controls.PaperSelectControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyApp.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
<Grid>
<ScrollViewer>
<GridView x:Name="paperGrid"
ItemsSource="{x:Bind Papers}"
Width="400" Height="300" >
<GridView.ItemTemplate >
<DataTemplate x:DataType="MyApp.Model.Paper" >
<TextBlock Text="{x:Bind Color}"/>
</DataTemplate>
</GridView.ItemTemplate>
</GridView>
</ScrollViewer>
</Grid>
</UserControl>
MyApp.Model.Paper
是類命名空間。
namespace MyApp.Model {
public class Paper {
public string Name { get; set; }
public string Color { get; set; }
public string Thumb { get; set; }
}
}
但我總是得到
無法解析數據類型MyApp.Model.Paper
錯誤
我希望有人能幫助我解決這個問題。謝謝。
在您的XAML文件的頭文件中,x指向了什麼? – user3185569
我剛添加完整的標題標記! @ user3185569 –