显示DataGrid单元格的工具提示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示DataGrid单元格的工具提示相关的知识,希望对你有一定的参考价值。
Weird issue with Intellisense and the HitTestInfo class. Just type it in, it will compile.
private void dataGrid1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e) { try { DataGrid.HitTestInfo hti = dataGrid1.HitTest(e.X,e.Y); if(hti.Type == DataGrid.HitTestType.Cell) { toolTip1.SetToolTip(dataGrid1, dataGrid1[hti.Row, hti.Column].ToString()); } } catch{} }
以上是关于显示DataGrid单元格的工具提示的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 WPF Toolkit Datagrid 更改单元格的背景颜色
c# wpf datagrid 模板列修改某个单元格,更新所选行另一个单元格的值,如何做到呢?