标签: wpf wpfdatagrid
如何让数据网格不允许用户选择多行?
答案 0 :(得分:5)
使用SelectionMode属性:
<DataGrid x:Name="dgName" SelectionMode="Single"> </DataGrid>