The easiest way to do it is to use existing functionality of Row.UnsureVisible() grid.
| C# | |
|---|---|
public void NavigateToLastInsertedRow(Grid grid, Product product) { Row row = grid.Rows.Add(product); row.EnsureVisible(); } | |
Back to .Net Grid HowTo topics
The easiest way to do it is to use existing functionality of Row.UnsureVisible() grid.
| C# | |
|---|---|
public void NavigateToLastInsertedRow(Grid grid, Product product) { Row row = grid.Rows.Add(product); row.EnsureVisible(); } | |
Back to .Net Grid HowTo topics