无法在 silverlight 中的列表框控件中显示图像
我尝试将图像与一些文本一起显示为列表框项目 - 显示文本但不显示图像。 这是数据模板 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在项目中包含图像并使用相对路径:
Try to include image in your project and use relative path: