L
Luiz Borges
I searched all over the internet for this, I can't believe no one
noticed that before.
Here is the problem, if you have a ListView with lots of items (just
enough get the vertical scroll bar on) and all the items belongs to one
Group (it can be the default Group) you can't navigate to the last two
items using the keyboard (End, Pagedown or Down arrow).
Here how to reproduce this:
1) put a ListView in a form
2) add this code to the FormLoad event
listView1.View = View.Details;
listView1.ShowGroups=true;
listView1.Columns.Add("column");
for (int i=0; i<40; i++) listView1.Items.Add(i.ToString());
3) now just try to get to the last item of the list using your
keyboard...
The same thing also happens in Explorer in Windows, just created a
folder full of files of the same Type and use Show Groups and Detail
mode...
How can I solve this bug????
Luiz Borges
noticed that before.
Here is the problem, if you have a ListView with lots of items (just
enough get the vertical scroll bar on) and all the items belongs to one
Group (it can be the default Group) you can't navigate to the last two
items using the keyboard (End, Pagedown or Down arrow).
Here how to reproduce this:
1) put a ListView in a form
2) add this code to the FormLoad event
listView1.View = View.Details;
listView1.ShowGroups=true;
listView1.Columns.Add("column");
for (int i=0; i<40; i++) listView1.Items.Add(i.ToString());
3) now just try to get to the last item of the list using your
keyboard...
The same thing also happens in Explorer in Windows, just created a
folder full of files of the same Type and use Show Groups and Detail
mode...
How can I solve this bug????
Luiz Borges