【发布时间】:2010-05-18 06:25:32
【问题描述】:
我想绑定到集合中的特定元素。 但我不知道如何编写绑定。 这是代码:
public class MySource
{
..
public string SomeProp;
public ICollection<T> MyCollection;
..
}
this.DataContext = new MySource();
<TextBox Text={Binding SomeProp} />
<TextBox Text={Binding FIRST_ELEMENT_OF_THE_MyCollection} />
<TextBox Text={Binding SECOND_ELEMENT_OF_THE_MyCollection} />
<!--Ignore other elements-->
请尝试替换那些绑定字符串
谢谢
【问题讨论】:
标签: wpf data-binding collections element