WPF XAML:如何禁用 DataGrid 中的多重选择?

发布于 2024-10-15 22:34:38 字数 253 浏览 5 评论 0原文

在这样的 DataGrid 中:

<DataGrid  AutoGenerateColumns="False" Height="200" Name="dataGrid"
    IsReadOnly="True" ItemsSource="{Binding CollectionView}" >
...
</Datagrid>

如何禁用多选功能?

(我确信这很简单,但我没有找到。)

In a DataGrid like this :

<DataGrid  AutoGenerateColumns="False" Height="200" Name="dataGrid"
    IsReadOnly="True" ItemsSource="{Binding CollectionView}" >
...
</Datagrid>

How do you disable the multi selection feature ?

(I'm sure it's simple, but I don't find it.)

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

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

发布评论

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

评论(2

花心好男孩 2024-10-22 22:34:38

设置 DataGrid.SelectionMode< /a>:

<DataGrid SelectionMode="Single" ...

Set the DataGrid.SelectionMode:

<DataGrid SelectionMode="Single" ...
孤独陪着我 2024-10-22 22:34:38

设置 DataGrid.MultiSelect

this.DataGrid.MultiSelect = "false"

set the DataGrid.MultiSelect

this.DataGrid.MultiSelect = "false"

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