wpf中ToolTip实现

定义样式:
<UserControl.Resources>
<Style TargetType="DataGridCell" BasedOn="{StaticResource DefaultDataGridCellStyle}" x:Key="ToolTipsStyle">
<Setter Property="ToolTipService.ToolTip" Value="{Binding Remark}" />
</Style>
</UserControl.Resources> 然后再dataGrid中的列定义使用:
CellStyle="{StaticResource ToolTipsStyle}" 注意这里继承了DefaultDataGridCellStyle
上一篇:(medium)LeetCode 230.Kth Smallest Element in a BST


下一篇:JS函数和变量