码迷,mamicode.com
首页 > Windows程序 > 详细

【转】WPF 给DataGridTextColumn统一加上ToolTip

时间:2015-06-25 12:16:13      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:

源地址:http://dongguojun.iteye.com/blog/1671963

我发现WPF中DataGridTextColumn直接设置它的ToolTipService.Tooltip并不好使,当然可以在这个列的CellStyle中再设置ToolTipService.Tooltip的值,这是管用的。但是当列比较多的时候,这样一一设置比较麻烦。下面介绍一个统一的设置方法,在DataGrid中统一设置CellStyle

<DataGrid.CellStyle>
      <Style TargetType="DataGridCell">
             <Setter Property="ToolTipService.ToolTip" Value="{Binding RelativeSource={RelativeSource Mode=Self},Path=Content.Text}"/>
      </Style>
</DataGrid.CellStyle>

 

【转】WPF 给DataGridTextColumn统一加上ToolTip

标签:

原文地址:http://www.cnblogs.com/ZXdeveloper/p/4599500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!