WPF MVVM绑定错误

我正在使用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进行连接。 我错过了什么?


就像绑定错误说的那样,您的itemscontrol的datacontext不包含名为HistoryItemCollection的公共属性。 在运行时检查datacontext的简单方法是使用Snoop

编辑:你必须使用属性而不是字段。

public ObservableCollection<SettingsTemplateHistoryItemViewModel> HistoryItemCollection {get;set;}
链接地址: http://www.djcxy.com/p/56219.html

上一篇: WPF MVVM binding error

下一篇: Databinding WPF DatagridComboBoxColumns to MVVM not working