回复 4楼tydou的帖子
没有直接的属性能够提供这个功能,这里有一个SampeCode:- private void gcMultiRow1_CellMouseEnter(object sender, CellEventArgs e)
- {
- if (e.Scope == CellScope.Row)
- {
- this.gcMultiRow1[e.RowIndex, e.CellIndex].ToolTipText = this.gcMultiRow1.GetDisplayText(e.RowIndex, e.CellIndex);
- }
- }
复制代码 |