我现在正在使用 WPF dataGrind 并面临一个 ussie。我需要 dataGrid 总是有一个选定的行。总是而且只有一个。
是否可以?
试试这个:
<DataGrid SelectionMode="Single" SelectionUnit="FullRow" PreviewMouseDown="PreviewMouseDown"/>
编辑:
private void PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
if (Keyboard.IsKeyDown(Key.LeftCtrl) || Keyboard.IsKeyDown(Key.RightCtrl))
e.Handled = true;
}