gpt4 book ai didi

c# - 如何将 ListBox 选定的项目分配给 Source 属性

转载 作者:太空宇宙 更新时间:2023-11-03 11:07:28 25 4
gpt4 key购买 nike

我希望当用户选择一个或多个项目时,我的源属性得到更新。我已经尝试使用绑定(bind)模式 OneWayToSource 但这没有帮助。下面是 XAML 和 ViewModel 代码:

<ListBox  x:Name="ItemsListBox" SelectionMode="Multiple" Height="300" 
ItemsSource="{Binding ResultSet}"
SelectedItem="{Binding SelectedItems,Mode=OneWayToSource}">

private List<string> _selectedItems;
public List<string> SelectedItems
{
get
{
return _selectedItems;
}
set
{
_selectedModeItems = value;
NotifyPropertyChanged("SelectedItems");
}
}

我已经采用了使用附加行为的方法并且它有效,但是有没有更简单的方法?

最佳答案

你的问题应该是这样的。

How to get multiple selected items from the ListBox in WPF with MVVM?

好吧,您从以下 stackoverflow 线程中得到了答案。

link 1

link 2

只需在 ResultSet View 模型中定义 IsSelected 属性即可。然后,如果您想在任何时候获取选定的项目,只需从 ResultSet 中获取“IsSelected”属性设置为 true 的项目即可。

关于c# - 如何将 ListBox 选定的项目分配给 Source 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15268643/

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