WPF XAML:如何禁用 DataGrid 中的多重选择?
在这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置 DataGrid.SelectionMode< /a>:
Set the DataGrid.SelectionMode:
设置 DataGrid.MultiSelect
this.DataGrid.MultiSelect = "false"
set the DataGrid.MultiSelect
this.DataGrid.MultiSelect = "false"