如何将文本框绑定到集合中的各个元素
我有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是 WPF 应用程序。
给定后面的代码:
绑定将如下所示:
If this is for a WPF app.
Given this code behind:
The binding would look like this: