ListBox Shift-Click Multi-Select Anchor 未正确设置

ListBox Shift-Click Multi-Select Anchor is not being set properly(ListBox Shift-Click Multi-Select Anchor 未正确设置)
本文介绍了ListBox Shift-Click Multi-Select Anchor 未正确设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I’m at my wit’s end trying to figure this out. I'm experienced in WPF, but I've never seen anything like this.

I have a ListBox that contains selectable ListBoxItems. Items in the list can be selected by mouse click or by using the up/down arrows. I’m using SelectionMode.Extended, so my list supports multiple selections.

The problem: Clicking on an item in the list, then Shift-Clicking on another item selects the correct range of items like you would expect. Unfortunately, using the up/down arrows does not work properly – instead, the range that’s selected always seems to be based off of the last CLICKED item, not the item that was selected with the arrow keys.

For example:

[Item 1] <- Click this item
[Item 2] <- Use the down arrow to select this item
[Item 3] <- Shift-Click this item

You would expect items 2 and 3 to be selected, instead, all of the items (1, 2, and 3) are selected.

All of the ListBox properties have the correct values (i.e. using the arrow keys updates the SelectedItems property), my only problem seems to be with how the ListBox is handling Shift-Click selection internally. To the best of my knowledge, I believe this has to do with the ListBox’s "multi-select anchor" getting set by mouse-click but not with the arrow keys.

Has anyone encountered and solved this before? Is there a way to set the "multi-select anchor" manually? Thanks for your help!

Chris

解决方案

I've figured out the resolution to this:

In order to solve this, you must set Focus to the item after changing the SelectedIndex:

if (SelectedIndex > 0) {
     SelectedIndex--;
     ListBoxItem item = ItemContainerGenerator.ContainerFromIndex(SelectedIndex) as ListBoxItem;
     item.Focus();
}

This is how you move the selection down in the list. However, you need to set focus to the item for the shift-click selection to recognize the item as the anchor.

这篇关于ListBox Shift-Click Multi-Select Anchor 未正确设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)