wpf - ListBox MVVM 中的 ClearSelection

标签 wpf silverlight mvvm listbox

在 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/

相关文章:

c# - 从父 View 模型派生的空 ViewModel 是否存在问题? WPF

silverlight - 是否有适用于 Windows Phone 7.5 (Mango) 的 ListCollectionView 或 PagedCollectionView 类

c# - 网格拆分器和最小宽度

wpf - WPF MVVM : an issue of organising ViewModels

c# - 需要捕捉按下 ListBoxItem 的事件

wpf - 当项目添加到列表框时动画 WPF 数据模板?

silverlight - 是否可以将客户端证书与来自 Windows Phone 7 的 HTTPS 请求一起使用?

wpf - 在MVVM中创建 “lookless” View

wpf - 仅查看属性(例如 : IsSelected) and the Model in MVVM

c# - RichTextBox (WPF) 没有字符串属性 "Text"