gpt4 book ai didi

wpf - ListBox MVVM 中的 ClearSelection

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

在 MVVM Silverlight 应用程序中,用户可以在 TextBox 中输入文本,ListBox 的内容也会相应地发生变化。
例如:如果用户输入“TV”,ListBox 将填充所有可用的电视品牌,用户可以从 ListBox 和 ListBox 条目中选择产品;接下来,如果他输入“计算机”,ListBox 内容将更改并使用 ComputerNames 填充。

一旦用户输入内容,它就会在字典中搜索匹配键的值。

查看:

<TextBox Name="SearchTBox" Text="{Binding SearchStr,UpdateSourceTrigger=PropertyChanged}" />
<ListBox Name="AnalysisLBox" ItemsSource="{Binding DataList,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding UserSelectedItem,Mode=TwoWay}"
Width="250" BorderBrush="Transparent" SelectedIndex="{Binding LBoxSelectedIndex,Mode=TwoWay}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

查看型号:

SortedDictionary Data()
{
List<string> tvList = new List<string>() { "Sony", "SamSung", "LG","Sharp" };
List<string> computerList = new List<string>() { "HP","Dell","Lenovo","Gateway" };
List<string> cameraList = new List<string>() { "Nikon","Sony","Panasonic" };
SortedDictionary<string, List<string>> Data = new SortedDictionary<string, List<string>>();
Data.Add("TV", billingList);
Data.Add("Computer", salesOutList);
Data.Add("Camera", customerAllocationList);
}

ObservableCollection<string> dataList = new ObservableCollection<string>();
public ObservableCollection<string> DataList
{
get { return dataList ; }
set { dataList = value; NotifyPropertyChanged("DataList"); }
}

int lBoxSelectedIndex;
public int LBoxSelectedIndex
{
get { return lBoxSelectedIndex; }
set { lBoxSelectedIndex = value; NotifyPropertyChanged("LBoxSelectedIndex"); }
}

string userSelectedItem;
public string UserSelectedItem
{
get { return userSelectedItem; }
set
{
userSelectedItem = value;
dataList.Clear();
LBoxSelectedIndex =-1;
NotifyPropertyChanged("UserSelectedItem");
}
}

一旦键匹配用户键入的字符串('TV'),它就会填充 ObservableCollection<string> dataList 与绑定(bind)到 ListBox 的 tvList。用户键入 Camera,它会清除 dataList 并添加 cameraList。问题出现在这里。清除数据并填充新数据时,不会清除列表框的选择。先前选择的位置的相同项目保持选中状态。
我试图从 ViewModel 的 UserSelectedItem 属性中将 SelectedIndex 设置为 -1,但它不起作用。

最佳答案

您也可以设置userSelectedItem=null

ObservableCollection<string> dataList = new ObservableCollection<string>();
public ObservableCollection<string> DataList
{
get { return dataList ; }
set
{
dataList = value;
userSelectedItem=null
LBoxSelectedIndex = -1;
NotifyPropertyChanged("DataList");
}
}

关于wpf - ListBox MVVM 中的 ClearSelection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11165143/

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