WPF:将图像添加到列表框 ItemTemplate
我正在创建一个 WPF 应用程序,其中包含一个绑定到项目名称的列表框。作为装饰元素,我想在列表中的每个项目旁边放置一个小图标,类似于 Outlook 在其个人文件夹列表中的做法。首先,我将对列表中的所有项目使用相同的图像。
这是到目前为止我得到的标记(在它工作后我会将其移动到资源字典中):
<ListBox.Resources>
<ImageBrush x:Key="ProjectIcon" ImageSource="Images/project.png" />
</ListBox.Resources>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{StaticResource ProjectIcon}"/>
<TextBlock Text="{Binding Path=Name}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
我在图像资源中遇到错误,但我不确定如何修复它。有什么建议吗?谢谢。
I am creating a WPF app with a list box that I am binding to project names. As a decorative element, I want to place a small icon next to each item in the list, similar to the way Outlook does in its Personal Folders list. For starters, I am going to use the same image for all items in the list.
Here is the markup that I've got so far (I'll move it to a resource dictionary after it's working):
<ListBox.Resources>
<ImageBrush x:Key="ProjectIcon" ImageSource="Images/project.png" />
</ListBox.Resources>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{StaticResource ProjectIcon}"/>
<TextBlock Text="{Binding Path=Name}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
I've got an error in the image resource, but I'm not sure how to fix it. Any suggestions? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Image
的Source
属性的类型为ImageSource
而不是ImageBrush
。以下应该有效:The
Source
property of anImage
is of typeImageSource
notImageBrush
. The following should work: