This question is locked. New answers and comments are not allowed.
If I want to select the last line with this :
It doesn't when the grid is groupped
so I guess I have to expand the last group before using the code above ?
if
(_Jobs.Count > 0)
{
rgvJobs.SelectedItem = _Jobs[_Jobs.Count - 1];
rgvJobs.ScrollIntoView(_Jobs[_Jobs.Count - 1]);
}
It doesn't when the grid is groupped
so I guess I have to expand the last group before using the code above ?