WPF ListView Keyboard Navigation Problem

2019-07-07 02:17发布

I've a listview like this

ListView:
————-----

  • Mango
  • Orange
  • Grapes
  • Grapes
  • Grapes
  • Apple
  • Strawberry

Whenever i navigate using downarrow, the BlueHighlight pauses at the first Grapes, a dotted rectangle start from second grapes and pauses at the third grapes, then the BlueHighlight resumes from Apple. This seems weird and it grows more weird when the navigation is upwards. It jumps from Apple to Orange or mango.

Is this due to Virtualization?
It seems only the duplicate data (grapes) is creating the problem. Any Help?

3条回答
在下西门庆
2楼-- · 2019-07-07 02:50

Think of the blue highlight as the selected data item. Grapes is duplicated, so the data selection doesn't change.

The dotted rectangle is the keyboard focus, which only cares about the ListViewItem that represents the data item.

So there's one Grapes object represented by 3 ListViewItem objects.

查看更多
戒情不戒烟
3楼-- · 2019-07-07 03:02

The dotted rectangle is your keyboard focus. The blue rectangle is your selection.

As you move down your keyboard focus tracks where you are. The selection, however, tracks which item is selected. When the same item is in the list several times, the selection rectangle can only be shown on one of them.

To make this work the way you are expecting, wrap your items inside your ObservableCollection. So instead of:

coll.Add(fruit);

you would write

coll.Add(new FruitWrapper(fruit));

In your ListBox your ItemTemplate can include a single ContentPresenter that presents the fruit inside the wrapper (eg. <ContentPresenter Content="{Binding Fruit}" />).

查看更多
Rolldiameter
4楼-- · 2019-07-07 03:11

You have the same "Grapes" object in ObservableCollection 3 times, I mean the object with same reference. And Listbox is mess with this. Each element should be an uncial instance.

查看更多
登录 后发表回答