gpt4 book ai didi

WPF MVVM 绑定(bind)错误

转载 作者:行者123 更新时间:2023-12-03 10:52:57 24 4
gpt4 key购买 nike

我正在使用 MVVM 模式。在我的 ViewModel 中,我有一个公共(public)的 ObservableCollection:

public ObservableCollection<SettingsTemplateHistoryItemViewModel> HistoryItemCollection;

public SettingsTemplateViewModel()
{
this.HistoryItemCollection = new ObservableCollection<SettingsTemplateHistoryItemViewModel>();
}

在我的 View 中,我有一个 ItemsControl,它的 ItemsSource 属性绑定(bind)到 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 中,因此绑定(bind)路径必须正确。 View 和 ViewModel 通过隐式/类型化的 DataTemplates 连接起来。我错过了什么?

最佳答案

就像绑定(bind)错误所说的那样,您的 itemscontrol 的数据上下文不包含名为 HistoryItemCollection 的公共(public)属性。在运行时检查数据上下文的一种简单方法是使用 Snoop

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

public ObservableCollection<SettingsTemplateHistoryItemViewModel> HistoryItemCollection {get;set;}

关于WPF MVVM 绑定(bind)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14620662/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com