在列表框 WPF 中设置所选项目的边框
如何在列表框中设置样式以获得所选项目周围的边框?
How do i set a style on the listbox to get a border around the selected item ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在列表框中设置样式以获得所选项目周围的边框?
How do i set a style on the listbox to get a border around the selected item ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
最简单的方法是在
ListBox
的 ItemContainerStyle 中添加IsSelected
触发器The easiest way is to add a Trigger for
IsSelected
in the ItemContainerStyle for theListBox
FocusVisualStyle 可能就是您要找的。
FocusVisualStyle may be what are you looking for.