所选项目的列表框项目模板

发布于 2024-08-10 13:43:39 字数 76 浏览 12 评论 0原文

我将列表框与 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 技术交流群。

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

发布评论

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

评论(1

余生一个溪 2024-08-17 13:43:39

我希望您正在寻找删除蓝色默认列表框选择的方法。该颜色来自 ListBoxItem 样式的 IsSelected DataTrigger。您可以通过创建 ListBoxItemStyle 的副本来覆盖它,即 ListBox.ItemContainerStyle

只是有关 ListBox 自定义的更多内部信息。基本上,ListBox 自定义包括覆盖以下样式和模板

  • ListBox.Style - 如果您想更改外壳的外观和感觉
  • ListBox.ItemTemplate - 设置适当的 DataTemplate 以显示类型 T 的各个属性,其中 ListBox.ItemsSource 是绑定到 IEnumerable
  • ListBox.ItemsPanel - 设置包含面板的 ItemsPanelTemplate,以便项目由面板布局。默认情况下,它是一个方向为垂直的 StackPanel。
  • ListBox.ItemContainerStyle - 设置ListBoxItem的样式

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

  • ListBox.Style - if you want to change the Way the outer shell looks and feel
  • ListBox.ItemTemplate - Set the appropriate DataTemplate to display the Individual properties of a type T, where ListBox.ItemsSource is bind to IEnumerable
  • ListBox.ItemsPanel - Set the ItemsPanelTemplate which contains a Panel so that the items get laid out by the panel. By default it is a StackPanel with orientation is vertical.
  • ListBox.ItemContainerStyle - set the style of the ListBoxItem
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文