Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF Toolkit: how to scroll datagrid to show selected item from code behind?

I tried the following, all of which fail on function ScrollIntoView and give a NullReferenceException:

// doesn't work
grid.SelectedItem = sItem;
grid.ScrollIntoView(sItem);

// doesn't work
grid.SelectedItem = sItem;
grid.Focus();
grid.CurrentColumn = grid.Columns[0];
grid.UpdateLayout();
grid.ScrollIntoView(sItem,grid.Columns[0]);

// doesn't work
grid.SelectedItem = sItem;
grid.UpdateLayout();
grid.ScrollIntoView(sItem);

The problem is, when I select a row from code-behind, selection is not visible - it's somewhere down the bottom. Unless the user scrolls they feels that selection has vanished. I need to scroll a DataGrid to the point that user can see the selection.

I also tried "BringIntoView" as well but no luck.

like image 783
Akash Kava Avatar asked Dec 31 '09 10:12

Akash Kava


1 Answers

Try:

grid.SelectedItem = sItem; 
grid.UpdateLayout();
grid.ScrollIntoView(grid.SelectedItem);
like image 191
Keith Harrison Avatar answered Sep 21 '22 06:09

Keith Harrison