Problem: If my DataGrid is not entirely visible (horizontal & vertical scrollbars are showing) and I click on one of my cells that is p
DataGrid
Define an EventSetter in the DataGrid.RowStyle to call a handler that prevents the row from being brought into view:
EventSetter
DataGrid.RowStyle
XAML
Handler
private void DataGrid_Documents_RequestBringIntoView(object sender, RequestBringIntoViewEventArgs e) { e.Handled = true; }