在MVVM Silverlight應用程序中,用戶可以在TextBox中輸入文本,並且ListBox的內容相應地發生變化。 例如:如果用戶輸入「TV」,則列表框將填充所有可用的電視品牌,並且用戶可以從列表框和列表框條目中選擇產品;接下來如果他進入「電腦」列表框內容改變並填充ComputerNames。ListBox MVVM中的ClearSelection
只要用戶鍵入內容,它就會在字典中使用匹配鍵的值進行搜索。
查看:
<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控件與tvList這勢必到列表框。用戶鍵入Camera,清除dataList並添加cameraList。問題發生在這裏。當清除數據並填充新數據時,listBox的選擇不會被清除。先前選定位置的相同商品仍保持選中狀態。 我試圖將SelectedIndex從ViewModel的UserSelectedItem屬性設置爲-1,但它不起作用。
設置
userSelectedItem=null
我不明白這一點,你要清除列表框列表框中選擇更改時? –用戶從列表框中選擇一個項目後立即清除列表框。 – Prathibha