我在页面上有一个选项卡控件;它的项目绑定回我的 ViewModel,它还公开了一个 ActiveTabItemIndex,它绑定(两种方式)到我的 xaml 中的 SelectedIndex 属性,并实现 INotifyPropertyChanged,以便我的 TabControl 知道何时更新。
这是(我理解)MVVM 正确的做事方式,并且 99% 正常工作。
class MainWindowViewModel : BaseViewModel, INotifyPropertyChanged
{
ObservableCollection<TabItemViewModel> _TabItems;
int _ActiveTabItemIndex;
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
handler(this, new PropertyChangedEventArgs(name));
}
void _TabItems_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add)
_ActiveTabItemIndex = _TabItems.IndexOf((TabItemViewModel)e.NewItems[0]);
RaisePropertyChanged("ActiveTabItemIndex");
}
public ObservableCollection<TabItemViewModel> TabItems
{
get
{
if (_TabItems == null)
{
_TabItems = new ObservableCollection<TabItemViewModel>();
_TabItems.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(_TabItems_CollectionChanged);
}
return _TabItems;
}
}
public int ActiveTabItemIndex
{
get
{
return _ActiveTabItemIndex;
}
set
{
_ActiveTabItemIndex = value;
}
}
}
这样,我对 TabItems 集合所做的任何操作都会反映在 TabControl 上,并且当我添加一个新项目时,它会自动被选中。这是一种享受;但是,当将第一项添加到空选项卡控件时,它看起来像这样:
显示选项卡内容,但未选择选项卡。我需要手动单击选项卡以使其看起来正确:
就好像在选项卡的绘制和它们的内容的绘制之间存在某种脱节。我知道绑定正在工作,因为后续选项卡已正确处理,如果我完全删除绑定,则在手动选择选项卡之前第一页不会显示其内容。如果有人看到这一点或可以阐明一些问题,将不胜感激!谢谢你们 :)