gpt4 book ai didi

wpf - 如何在 ListBox 中获取类似 PreviewSelectionChanged 事件的内容?

转载 作者:行者123 更新时间:2023-12-04 19:22:24 24 4
gpt4 key购买 nike

当列表框选择即将更改时,我需要执行一些操作,但旧项目仍处于选中状态。 PreviewSelectionChanged 之类的东西。 WPF是否允许这样的操作?我在 ListBox 控件中找不到这样的事件。

最佳答案

下面是如何从选择更改事件中获取旧项目。

private void ListBox_SelectionChanged(object sender , SelectionChangedEventArgs e)
{
// Here are your old selected items from the selection changed.
// If your list box does not allow multiple selection, then just use the index 0
// but making sure that the e.RemovedItems.Count is > 0 if you are planning to address by index.
IList oldItems = e.RemovedItems;

// Do something here.

// Here are you newly selected items.
IList newItems = e.AddedItems;
}

希望这就是您所追求的。

关于wpf - 如何在 ListBox 中获取类似 PreviewSelectionChanged 事件的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1548237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com