|
|
|
start date: Mon, 20 Aug 2007 11:40:28 -0400,
posted on: microsoft.public.dotnet.framework.windowsforms.controls
back
| Thread Index |
|
1
Jeffery Jones am
|
|
2
(Linda Liu [MSFT])
|
|
3
Jeffery Jones am
|
DataGridView Tool Tips
I have a DataGridView control with no tooltips set in the designer - I
searched the source code to be sure there were no tooltip statements.
All tooltips in the column definitions are blank.
1.) Column headers which word wrap display tool tips (which is the
exact text of the column heading). Is there any way to disable this?
2.) DataGridViewButtonColumn buttons have tooltips displayed on only
a few systems (with same systemwide font size settings, but different
display resolutions). Again, this is the exact same tooltip text as
the button text. I suspect the display code thinks the text may have
been clipped or word wrapped. Is there any way to disable this?
Date:Mon, 20 Aug 2007 11:40:28 -0400
Author:
|
RE: DataGridView Tool Tips
Hi Jeffery,
The DataGridView class has provided a property called ShowCellToolTips,
which gets or sets a value indicating whether or not ToolTips will show
when the mouse pointer pauses on a cell.
You may set the ShowCellToolTips property to false to disable the ToolTips
for cells.
Hope this helps.
If you have any question, please feel free to let me know.
Sincerely,
Linda Liu
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Date:Tue, 21 Aug 2007 04:18:04 GMT
Author:
|
Re: DataGridView Tool Tips
On Tue, 21 Aug 2007 04:18:04 GMT, v-lliu@online.microsoft.com (Linda
Liu [MSFT]) wrote:
>The DataGridView class has provided a property called ShowCellToolTips,
>which gets or sets a value indicating whether or not ToolTips will show
>when the mouse pointer pauses on a cell.
>
>You may set the ShowCellToolTips property to false to disable the ToolTips
>for cells.
>
>Hope this helps.
>If you have any question, please feel free to let me know
Thanks, that solved the problem. I looked all over for something
like that, but for some reason didn't get to the 'S' property!
Date:Tue, 21 Aug 2007 07:04:52 -0400
Author:
|
|
|