如何将文本框绑定到集合中的各个元素

发布于 2024-07-30 17:46:05 字数 346 浏览 2 评论 0原文

我有一个名为 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; }
}

有人可以建议吗?

I have a class with an ObservableCollection called List and I am trying to bind to textboxes individually. I have been trying:

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

The StringObject class is just:

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

Can someone advise?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

姜生凉生 2024-08-06 17:46:05

如果这是 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}" />

If this is for a WPF app.

Given this code behind:

/// <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; }
    }

The binding would look like this:

<TextBox Text="{Binding List[0].Value}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文