我有麻烦的元素。嗯,我想我走错了路,但我没找到问题所在。
下面是我的简单代码:<UserControl x:Class="videoplayer.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="Black">
<Image x:Name="btnPlay" Source="cat.jpg" />
</Grid>
</UserControl>*
我已经把文件cat.jpg放在。xap文件的同一目录中,也在父目录中,再次在父目录中,但当我启动应用程序时,我仍然没有看到任何cat !(
只有黑色的网格…
有人看到错误了吗?谢谢!ps:是silverlight 2 sdk
您必须将该文件作为源代码包含在项目中。然后在属性检查器中选择Source属性的图像
该图像需要有一个build-action设置Resource
From Visual Studio:
- 选择文件,
- 打开属性视图,
- 在Build Action下拉菜单中选择Resource。