无法在 silverlight 中的列表框控件中显示图像

发布于 2024-11-11 15:32:31 字数 414 浏览 3 评论 0原文

我尝试将图像与一些文本一起显示为列表框项目 - 显示文本但不显示图像。 这是数据模板 xaml:

<DataTemplate x:Key="DT">
<StackPanel Orientation="Horizontal">
<Image Source="C:\test1.png" Height="24" Width="24" />
<sdk:Label Content={Binding} />
</StackPanel>
<DataTemplate>

<ListBox x:Name="bla" ItemTemplate="{StaticResource DT}">

</ListBox>

当我尝试在列表框外部显示相同的图像时,它工作得很好

I' trying to display an image along with some text as a listbox item - the text is displayed but the image is not.
Here's the datatemplate xaml:

<DataTemplate x:Key="DT">
<StackPanel Orientation="Horizontal">
<Image Source="C:\test1.png" Height="24" Width="24" />
<sdk:Label Content={Binding} />
</StackPanel>
<DataTemplate>

<ListBox x:Name="bla" ItemTemplate="{StaticResource DT}">

</ListBox>

When I'm trying to display the same image outside the listbox it works perfectly

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2024-11-18 15:32:31

尝试在项目中包含图像并使用相对路径:

<Image Source="test1.png" Height="24" Width="24" />

Try to include image in your project and use relative path:

<Image Source="test1.png" Height="24" Width="24" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文