我将ListBox
绑定到ViewModel上定义的ICollectionView
(从现在开始的VM)。
我有一个属性用于所选项目(SelectedFoo
),该属性设置为VM构造函数中的第一个。
当有人在文本框中输入文本时,我会根据该输入过滤集合(到目前为止,这很好)。
如何在应用某些过滤后将所选索引设置为集合中的第一项?我无法从代码中绑定到ICollectionView
中的第一个对象。
有什么想法吗?
这里有一些精简代码,包括List
,我在XAML中绑定的ICollectionView
,以及过滤的代码在FooFilterString
中用户在文本框中输入时更新。
// This is the underlying list
public List<Foo> FooList
{
get { return _fooList; }
set
{
if (Equals(value, _fooList)) return;
_fooList = value;
RaisePropertyChanged();
}
}
private List<Foo> _fooList;
// This is what the list box binds to
public ICollectionView FooListView
{
get { return _fooListView; }
set
{
if (Equals(value, _fooListView)) return;
_fooListView = value;
RaisePropertyChanged();
}
}
private ICollectionView _fooListView ;
// This is bound to from the XAML, as user types, it will filter the list.
// I want to bind to the first item of the filtered list.
public string FooFilterString
{
get { return _fooFilterString; }
set
{
_fooFilterString = value;
FooListView.Filter = (s => some_logic); // <-- filters the list
/*
* How can I set the selected index here ?!
*/
}
}
private string _fooFilterString;
// I Bind to this, and want to set this after filtering. First time, I just
// set it to the first item from the FooList, but after filtering, I'm loosing
// the selection
public Foo SelectedFoo {
get { /*...*/ }
set { /*...*/ }
}
private Foo _selectedFoo;
答案 0 :(得分:2)
要总结评论以从ICollectionView
中选择第一项,您可以使用ICollectionView.MoveCurrentToFirst()
FooListView.Filter = s => some_logic;
FooListView.MoveCurrentToFirst()
您还需要启用IsSynchronizedWithCurrentItem
<ListBox ... IsSynchronizedWithCurrentItem="True">