wpf controls - How to bind an item name in the inner collection in wpf -
i have structure like
collectiona { itema { name } }
i need bind collection's first item's name property textbox control.
i have collection in view model. how specify collection's first element textbox control in wpf ?
<textbox text="{binding collectiona[0].name}"></textbox>
Comments
Post a Comment