在我当前的布局中,我希望一些数据在设计视图中可见,因此我阅读了有关 DataContext 和 DesignData 的信息,但我未能正确使用它们。
我的 MainPage.xaml 以这种方式开始:
<phone:PhoneApplicationPage
x:Class="AppStalker.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="True"
d:DataContext="{d:DesignData Source=./SampleData/SampleData.xml}">
我的应用程序编译时没有警告/错误,我可以在模拟器中看到数据。无论如何,在构建解决方案后 VS 2012 抱怨它找不到C:\path\to\project\AppName\SampleData\SampleData.xml
我三次检查我没有拼写错误,我还将 xml 更改为 xaml,但没有任何效果。我还三次验证了解决方案视图显示了目录和文件。
现在它变得有趣了:如果我改变它的路径,Source=./App.xaml
它不会抱怨。如果我将其更改为引用 MainPage.xaml,它会抱怨文件中的一些错误。如果我将我的移动SampleData.xml
到同一个根目录,App.xaml
它仍然拒绝找到它们......
我还将文件的构建操作更改为Resource
, Embedded Resource
,DesignData
但没有任何改变。
基本上我遵循这个LongListSelector 演练
有任何想法吗?