1

我有一个持有按钮和标签的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 属性,因为我使用选择突出显示来指示不同的用户交互。

提前致谢!

4

0 回答 0