1、在MouseEnterCell事件设置代码:
If e.Col.Name = "备注" AndAlso e.Row.IsNull("备注") = False Thene.Table.ShowToolTip(e.Row(“备注"),e.Row,e.Col)End If
2、在MouseLeaveCell事件设置代码:
If e.Col.Name = "备注" Thene.Table.HideToolTip()End If
显示动态提示信息,因字数较多,超过了屏幕宽度,怎么办?