所选项目的列表框项目模板
我将列表框与 ItemTemplate 一起使用,当我从列表中选择一个项目时,它显示蓝色背景 如何将选定项目的样式设置为与未选定项目类似?
I am using Listbox with ItemTemplate, and when I select an item from the list, it shows blue background
How can I style the selected item, to be similar to non-selected one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望您正在寻找删除蓝色默认列表框选择的方法。该颜色来自 ListBoxItem 样式的 IsSelected DataTrigger。您可以通过创建 ListBoxItemStyle 的副本来覆盖它,即 ListBox.ItemContainerStyle
只是有关 ListBox 自定义的更多内部信息。基本上,ListBox 自定义包括覆盖以下样式和模板
I hope you are looking for to remove the blue default ListBox selection. That color is coming from the IsSelected DataTrigger on the ListBoxItem style. You can override that by creating a copy of ListBoxItemStyle, which is ListBox.ItemContainerStyle
Just a little more inside information about a ListBox customization. Basically a ListBox customization includes overriding below styles and templates