Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的结构
CollectionA { ItemA { 名称 } }
我需要将集合的第一项的 Name 属性绑定到 TextBox 控件。
我的视图模型中有这个集合。如何将集合的第一个元素指定给 wpf 中的 TextBox 控件?
<TextBox Text="{Binding CollectionA[0].Name}"></TextBox>