0

我正在尝试将文本块绑定到可观察集合中的项目。下面是集合的类和属性。我是否正确绑定?谢谢!

public class ListStuff
{
  public string Name { get; set;}
}

private ObservableCollection<ListStuff> mListStuff = new ObservableCollection<ListStuff>();

public ObservableCollection<ListStuff> NameLists
        {
            get
            {
                return mListStuff;
            }
        }

这是 Xaml,如果我绑定到它说的 NameLists(集合)

        <Border Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" BorderThickness="0"                        
            <TextBlock Margin="0,5" FontSize="24" HorizontalAlignment="Stretch" Text="{Binding Path=Name"}/>                                                                        
          </Border>
4

1 回答 1

2

您的“姓名”属性必须是公开的。您只能绑定公共属性。从属性名称中省略标识符,本质上意味着它变成了私有的,因此 WPF 系统找不到它,因为它只使用反射搜索公共属性。

于 2013-05-15T20:37:51.477 回答