如果单元格中的内容消失,我似乎无法将工具提示绑定到 DataGridCell 的内容。换句话说,当我将鼠标悬停在单元格上时,工具提示会按预期显示,但单元格内容不再可见(永久不可见,除非我向下滚动列表并向上滚动)。Bellow是我遇到问题的WPF:
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Mode=Self}, Path=Content, Mode=OneWay}">
</Setter>
</Style>
</DataGrid.CellStyle>
当 ToolTip 显示时,我可以做些什么来阻止 DataGridCell 的内容消失?