1

我有一个名为 List 的 ObservableCollection 类,我正在尝试单独绑定到文本框。我已经试了:

<TextBox Text="{Binding Source=List[0], Path=Value}" />
<TextBox Text="{Binding Source=List[1], Path=Value}"/>

StringObject 类只是:

class StringObject
{
    public string Value { get; set; }
}

有人可以建议吗?

4

1 回答 1

4

如果这是针对 WPF 应用程序。

鉴于后面的代码:

/// <summary>
    /// Interaction logic for Window1.xaml
    /// </summary>
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
            this.DataContext = new ListCon();
        }
    }

    public class ListCon
    {
        public List<StringObject> List
        {
            get
            {
                var list = new List<StringObject>();
                list.Add(new StringObject() { Value = "Hello World" });
                return list;
            }
        }
    }

    public class StringObject
    {
        public string Value { get; set; }
    }

绑定看起来像这样:

<TextBox Text="{Binding List[0].Value}" />
于 2009-08-11T06:14:01.927 回答