我有一个ListBox
,DataTemplate
拥有一个按钮和标签:
<ListBox.ItemTemplate>
<DataTemplate>
<DockPanel>
<Button DockPanel.Dock="Left" Command="{Binding DataContext.AddToBoxCmd, RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl, AncestorLevel=1}}"
CommandParameter=???/> <--How to bind command parameter here to Label's content below
<Label x:Name="PartNumberLabel" Content="{Binding Path=Element[PartNumber].Value}"/>
我想将Button的CommandParameter绑定到下面的Label的Content值。我宁愿不使用SelectedItem属性,因为我使用选择突出显示来指示不同的用户交互。
提前致谢!