在我的 xaml 中,我有一个 Itemscontrol,它的数据模板设置为 ItemTemplate 属性。在我的数据模板中,我有一个按钮,并且我为该按钮设置了一个工具提示。我正在尝试将工具提示的放置目标设置为该按钮,但是绑定失败。下面是我的代码:
<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>
如何将放置目标绑定指定为按钮?
谢谢,-迈克