我想在其工具提示中显示(自定义)标签的一些属性, 但我似乎无法让它正常工作所以必须做错事:
<Label.ToolTip>
<Border BorderBrush="Gray" CornerRadius="5" Margin="5" Padding="5">
<Label Content="{Binding Path=Width, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Label}}}"/>
</Border>
</Label.ToolTip>
有什么想法吗?
答案 0 :(得分:3)
我找到了解决方案
<ToolTip DataContext="{Binding Path=PlacementTarget, RelativeSource={x:Static RelativeSource.Self}}">
Thnx to Karl!
http://karlshifflett.wordpress.com/2007/12/29/wpf-sample-series-data-binding-in-tooltip/