WPF 禁止单击 ComboBoxItem

发布于 2024-08-14 14:52:41 字数 104 浏览 5 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

走过海棠暮 2024-08-21 14:52:41

您应该能够通过使用 ComboBoxItem 上的“IsEnabled”属性来完成此操作。在我的快速测试中,

<ComboBox>
    <ComboBoxItem>Item1</ComboBoxItem>
    <ComboBoxItem IsEnabled="False">Item2</ComboBoxItem>
    <ComboBoxItem>Item3</ComboBoxItem>
</ComboBox>

结果是:生成一个包含 3 个项目的组合框,并且单击时不会选择“Item2”。

You should be able to accomplish this by using the 'IsEnabled' property on the ComboBoxItem. In my quick test, this:

<ComboBox>
    <ComboBoxItem>Item1</ComboBoxItem>
    <ComboBoxItem IsEnabled="False">Item2</ComboBoxItem>
    <ComboBoxItem>Item3</ComboBoxItem>
</ComboBox>

Results in a ComboBox with 3 items, and "Item2" does not get selected when clicked.

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