How can I make the data grid not allow the user to select multiple rows?
+1
A:
Use SelectionMode attribute:
<DataGrid x:Name="dgName" SelectionMode="Single">
</DataGrid>
kzen
2010-10-01 22:09:05
Well don't I feel stupid. I saw that too, and for some reason just assumed that Single was the default.
Jonathan Allen
2010-10-01 23:16:13
Don't worry, it happens to me all the time... :)
kzen
2010-10-04 15:42:58