在我的xaml中,我有一个Itemscontrol,它有一个设置为ItemTemplate属性的datatemplate。在我的datatemplate里面,我有一个按钮,我为按钮设置了工具提示。我正在尝试将工具提示的放置目标设置为该按钮,但绑定失败。以下是我的代码:
<DataTemplate x:Key="MyTemplate">
<Grid x:Name="PopupGrid" Background="Red">
<Button Width="100" Height="30" Content="Click Me!" x:Name="button">
<Button.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" PlacementTarget="{Binding ElementName= button}">
<StackPanel Orientation="Vertical">
<Label Content="Newly Rejected" Style="{StaticResource ToolTipHeaderStyle}"></Label>
<Label Content="Please perform requested edits and resubmit" Style="{StaticResource ToolTipTextStyle}"></Label>
</StackPanel>
</ToolTip>
</Button.ToolTip>
</Button>
</Grid>
如何将放置目标绑定指定为按钮?
谢谢, -Mike