我'尝试将图像与一些文本一起显示为列表框项目 - 显示文本但图像不显示。 这是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>
当我试图在列表框外显示相同的图像时,它可以完美地运行
答案 0 :(得分:0)
尝试在项目中包含图片并使用相对路径:
<Image Source="test1.png" Height="24" Width="24" />