WPF DataGrid ToolTip显示内容全局样式
时间:2021-05-24 04:13:23
收藏:0
阅读:0
<Style TargetType="DataGridCell">
<Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self} ,Path=Content.Text}"/>
</Style>
加入全局样式资源文件即可全局应用。
评论(0)