在 WPF DataGrid Row 中禁用焦点

发布于 2024-12-08 13:21:51 字数 467 浏览 0 评论 0原文

我有一个 C# WPF DataGrid。在管理员模式下,用户可以在 DataGrid 中高亮显示并选择行,然后使用 PreviewKeyDown 按下“D”来删除它们。在操作员模式下,此功能将被禁用,用户只能滚动和阅读卷,但无法突出显示或选择要删除的行。

在此处输入图像描述

我可以将行高亮显示并删除。但我不知道如何禁用此功能。 我尝试过:

  • IsReadOnly = false 呈现 DataGrid 不可滚动
  • Focusable = false 用户仍然可以高线显示并选择仍然可见的行
  • IsHitTestVisible = false

如何?

I have a C# WPF DataGrid. In administrator mode, user can highline and select rows in DataGrid and key down a "D" to remove them using PreviewKeyDown. In operator mode, this feature will be disabled and user can only scroll and read rolls but cannot highline or select rows to delete.

enter image description here

I can get the rows to be highlined and removed. But I don't know how to disable this feature.
I tried:

  • IsReadOnly = false renders the DataGrid not scrollable
  • Focusable = false user can still highline and select the rows
  • IsHitTestVisible = false still visible..

How?

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

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

发布评论

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

评论(1

北方的巷 2024-12-15 13:21:51

您可以通过在 DataGridRow 上设置 IsEnabled="False" 来禁用 DataGrid 中的选择,同时仍保持排序、滚动等。

这会带来副作用,即大多数元素都会呈现“灰色”/禁用外观,但 TextBlocks 却并非如此。

<DataGrid ...>
    <DataGrid.RowStyle>
        <Style TargetType="DataGridRow">
            <Setter Property="IsEnabled" Value="False"/>
        </Style>
    </DataGrid.RowStyle>
    <!-- ... -->
</DataGrid>

You could disable selection in the DataGrid while still keeping sorting, scrolling etc. by setting IsEnabled="False" on DataGridRow.

This has the sideeffect that most elements get the "grayed-out"/disabled look, however this is not the case for TextBlocks.

<DataGrid ...>
    <DataGrid.RowStyle>
        <Style TargetType="DataGridRow">
            <Setter Property="IsEnabled" Value="False"/>
        </Style>
    </DataGrid.RowStyle>
    <!-- ... -->
</DataGrid>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文