假设有一个组合框:
<ComboBox ItemsSource="{Path=ListOfItems}">
<ComboBox.ItemTemplate>
<DataTemplate>
<CheckBox Tag="{Binding Path=this}"
Content="{Binding Path=AProperty}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
现在我想要的是 ComboBox 的Content属性绑定到相应的列表元素的属性AProperty(工作正常),而Tag属性绑定到列表元素本身,这不起作用。我做错了什么?