2

有很多类似的问题,我已经尝试了这些问题的许多答案,但到目前为止没有任何帮助。我不明白错误消息的实际含义。错误信息是;

System.Windows.Data Error: 40 : BindingExpression path error: 'CategoryModel' 
property not found on 'object' ''String' (HashCode=-57655201)'.
BindingExpression:Path=CategoryModel.CategoryList; DataItem='String'
(HashCode=-57655201); target element is 'TextBlock' (Name=''); target property is
'Text' (type 'String')

CategoryList 包含一个完整的类别的字符串列表(从调试中检查)。我的xaml在下面,

<ListView x:Name="categoryListView" HorizontalAlignment="Left" Width="56" Height="156" 
              ItemsSource="{Binding Path=CategoryModel.CategoryList}" 
              DisplayMemberPath="CategoryModel.CategoryList" 
              SelectedValue="{Binding Path=CategoryModel.SelectedCategory}"
              VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5">
</ListView>

xaml 设计看起来不错,应用程序运行良好,但没有填充。categoryList 应该在初始化时填充。它实际上已填充,但 listView 没有显示任何内容。

编辑:

类别模型;

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RecorderApp.Model
{
public class CategoryModel : INotifyPropertyChanged
{
    private String _selectedCategory;
    private String _recordTitle;
    private String _systemInfoLabel;


    private ObservableCollection<String> _categoryList;

    public ObservableCollection<String> CategoryList
    {
        get { return _categoryList; }

        set
        {
            if (_categoryList != value)
            {
                _categoryList = value;
                OnPropertyChanged("CategoryList");
            }
        }
    }

    public String SystemInfoLabel
    {
        get { return _systemInfoLabel; }

        set
        {
            if (_systemInfoLabel != value)
            {
                _systemInfoLabel = value;
                OnPropertyChanged("SystemInfoLabel");
            }
        }
    }

    public String SelectedCategory
    {
        get { return _selectedCategory; }

        set
        {
            if (_selectedCategory != value)
            {
                _selectedCategory = value;
                OnPropertyChanged("SelectedCategory");
            }
        }
    }

    public string RecordTitle
    {
        get { return _recordTitle; }
        set
        {
            _recordTitle = value;
            OnPropertyChanged("RecordTitle");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    private void OnPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}
}
4

2 回答 2

11

您的DisplayMemberPath绑定导致错误,在您的情况下应该完全删除,因为它不需要。

要使用DisplayMemberPath,您需要能够引用该属性,例如ListView.ItemsSource[X].SomePropertySomeProperty您的属性在哪里?DisplayMemberPath

您收到此错误是因为您ItemsSourceList<String>, 并且String不包含名为 的属性CategoryModel

要解释您遇到的确切绑定错误:

System.Windows.Data 错误:40:BindingExpression 路径错误:在“对象”“字符串”(HashCode=-57655201)上找不到“CategoryModel”属性。BindingExpression:Path=CategoryModel.CategoryList;DataItem='String' (HashCode=-57655201); 目标元素是'TextBlock'(名称='');目标属性是“文本”(类型“字符串”)

  • 此行表示找不到CategoryModel对象上的属性String

    BindingExpression 路径错误:在 'object' ''String' 上找不到 'CategoryModel' 属性(HashCode=-57655201)'

  • 此行包含Path引发错误的绑定表达式的属性

    BindingExpression:Path=CategoryModel.CategoryList;

  • 此行告诉您引发错误的绑定的 Source 对象(通常是DataContext

    DataItem='String' (HashCode=-57655201);

  • 这行意味着它无法将属性绑定到Texta TextBox(DisplayMemberPath是制作 a 的快捷方式ItemTemplateTextBlock它已Text绑定到DisplayMemberPath属性)

    目标元素是'TextBlock'(名称='');目标属性是“文本”(类型“字符串”)

因此,总而言之,它告诉您它正在尝试绑定TextBox.Text{Binding Path=CategoryModel.CategoryList},但是DataContext后面的TextBox是 type String,并且String没有名为CategoryModel

于 2013-01-23T14:25:11.260 回答
0

下面的静态绑定也可以帮助你。

<Window.Resources>
  <local:CategoryModel x:Key="objCategory" />
</Window.Resources>
<Grid>
  <ListView x:Name="categoryListView" 
            HorizontalAlignment="Left" 
            Width="56" Height="156" 
            ItemsSource="{Binding Source={StaticResource objCategory}, Path=CategoryList}"        
            VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" />
</Grid>
于 2013-01-23T15:02:47.513 回答