在我的 XAML 代码中,我写了这个:
<Image Source="/Images/male32.png" Visibility="Visible" />
我的项目文件结构如下所示:
但是我的图像没有加载?如您所见,我正在尝试添加我在项目的 Images 文件夹中拥有的 male32.png 图像。
在我的 XAML 代码中,我写了这个:
<Image Source="/Images/male32.png" Visibility="Visible" />
我的项目文件结构如下所示:
但是我的图像没有加载?如您所见,我正在尝试添加我在项目的 Images 文件夹中拥有的 male32.png 图像。
Check the build action of the Image.
Example: When you use "Build Action" of type "Content" then you access your image in this way:
<Image Stretch="None" Source="/images/appbar.cancel.rest.png"/>
When you use "Build Action" of type "Resource" then you access your image in this way:
<Image Source="/WP7SampleProject3;component/images/appbar.feature.email.rest.png"/>
好吧,我想通了,原来它与 BuildAction 属性没有任何关系,我所要做的就是在图像路径中添加“..”,例如“../Images/male32.png”。
愚蠢的问题甚至不应该是一个问题。
尽管如此,我已经读到 BuildAction 也可能是图像未显示的潜在原因。因此,如果您遇到图像不显示的问题,值得一试。