我正在使用 MVVM 模式。在我的 ViewModel 中,我有一个公共的 ObservableCollection:
public ObservableCollection<SettingsTemplateHistoryItemViewModel> HistoryItemCollection;
public SettingsTemplateViewModel()
{
this.HistoryItemCollection = new ObservableCollection<SettingsTemplateHistoryItemViewModel>();
}
在我的视图中,我有一个 ItemsControl,它的 ItemsSource 属性绑定到 ViewModel 中的 ObservableCollection。
<ItemsControl ItemsSource="{Binding HistoryItemCollection}"/>
我收到以下错误:
BindingExpression path error: 'HistoryItemCollection' property not found on 'object' ''SettingsTemplateViewModel' (HashCode=48413709)'. BindingExpression:Path=HistoryItemCollection; DataItem='SettingsTemplateViewModel' (HashCode=48413709); target element is 'ItemsControl' (Name=''); target property is 'ItemsSource' (type 'IEnumerable')
我很困惑。我 100% 确定该属性存在于 View 的 DataContext(即 ViewModel)中。我已将属性名称复制并粘贴到视图中,因此绑定路径必须正确。View 和 ViewModel 通过隐式/类型化的 DataTemplates 连接起来。我错过了什么?