我想在 DataGridCell 上显示工具提示。到目前为止,我尝试了以下方式。但问题是当我将鼠标悬停在 DataGridCell 上时,整个 DataGridCell 内容都会消失。
<Style TargetType="DataGridCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type DataGridCell}">
<ContentPresenter>
<ContentPresenter.ToolTip>
<ToolTip Content="{Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.Content, Mode=OneWay}">
</ToolTip>
</ContentPresenter.ToolTip>
</ContentPresenter>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
谁能帮我..
提前致谢。