我有一个ListBox
可以编辑的 DataTemplate 是 TextBox。我应该在哪里设置 Binding TwoWay?在 ItemSource 中还是在 TextBox 中绑定?也许两者兼而有之?它在内部是如何运作的?是遗传的吗?因此,如果我在 ItemSource 中设置 Binding - 它是否在 TextBox 中继承?
<ListBox HorizontalAlignment="Left" ItemsSource="{Binding Commands, Mode=TwoWay}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBox Text="{Binding Name}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>