阻止 WPF 选项卡控件中的多选?

发布于 2024-07-25 07:05:20 字数 159 浏览 0 评论 0原文

看起来,在 WPF TabControl 中,用户可以通过 Ctrl-ClickShift-Click 选择多个项目。

有一个属性可以控制这个吗? 或者我是否必须处理单击/选择事件并明确取消选择其他项目?

It appears that in a WPF TabControl the user can select multiple items, either via Ctrl-Click or Shift-Click.

Is there a property that controls this? Or do I have to handle the click/select event and explicitly unselect other items?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟凡古楼 2024-08-01 07:05:20

感谢摩尔的评论,我能够解决这个问题。

TabControl.Items 集合中的每个 TabItem 都需要一个控件来显示内容。 我的程序使用 ListView

tabItem.Content = new System.Windows.Controls.ListView();

创建每个 ListView 时,将 SelectionMode 属性设置为 Single
(如果 Single 是默认值,为什么这种情况没有发生,这是一个谜......)

Thanks to Moore's comment, I was able to solve this.

Each TabItem in the TabControl.Items collection needs a control to display the content. My program is using a ListView:

tabItem.Content = new System.Windows.Controls.ListView();

When creating each ListView, set the SelectionMode property to Single.
(Why that isn't happening, if Single is the default, is a mystery...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文