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

【转】WPF 给DataGridTextColumn统一加上ToolTip

时间:2019-10-09 12:38:52      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:source   https   logs   rop   text   log   http   tps   content   

源地址:https://www.cnblogs.com/ZXdeveloper/p/4599500.html

在开发的过程中发现,如果给datagrid的每一列都单独添加提示太麻烦,于是在网上找了下统一设置Tooltip的方法,下面就是一种统一的设置方法。

亲测可用,代码如下:

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

 

【转】WPF 给DataGridTextColumn统一加上ToolTip

标签:source   https   logs   rop   text   log   http   tps   content   

原文地址:https://www.cnblogs.com/huangwei1992/p/11640781.html

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