When I search for an item in a row, the grid does not scroll down to the selected row.
The row is selected, but I have to manually scroll down to the selected row.
I have AutoScroll = true
Thanks
If
filterTextBox.Text <>
""
Then
For
Each
row
As
GridViewDataRowInfo
In
LotDetailsDataGrid.Rows
If
(filterTextBox.Text.Equals(row.Cells(
"ISBN_13"
).Value.ToString))
Then
row.IsSelected =
True
Exit
For
End
If
Next
End
If