WPF 禁止单击 ComboBoxItem
我有一个 ComboBoxItem,它严格充当部分标题。从视觉上看,我已经设置了它,但是当选择某些内容时我如何吃点击?
如果可能的话,我更愿意在 xaml 中完成此操作。 TIA
I have a ComboBoxItem that acts strictly as a section title. Visually, I have it set but how do I eat the click when something is selected?
I would prefer to accomplish this in xaml, if possible. TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够通过使用 ComboBoxItem 上的“IsEnabled”属性来完成此操作。在我的快速测试中,
结果是:生成一个包含 3 个项目的组合框,并且单击时不会选择“Item2”。
You should be able to accomplish this by using the 'IsEnabled' property on the ComboBoxItem. In my quick test, this:
Results in a ComboBox with 3 items, and "Item2" does not get selected when clicked.