DataGridView: ToolTipText overrides HeaderText

Closed
0
0

Version 1.3.24

I create a DataGridView and manually bind the column to the datatable.

oDatagridviewcolumn.Name=…
oDatagridviewcolumn.DataPropertyName=…
oDatagridviewcolumn.HeaderText=”DisplayText”;
oDatagridviewcolumn.ToolTipText=”ToolTipText”;

The result is now that the text ‘ToolTipText’ is displayed in the header of the datagridview.

Seems to be that the Property ‘ToolTipText’ overrides ‘HeaderText’

 

  • You must to post comments
0
0

Yep, logged the bug. This is the workaround:

column.HeaderCell.ToolTipText = “TOOLTIP”;

 

  • You must to post comments
0
0

Hi Kay,

the bug (WJ-7955) is fixed in the latest development build (1.3.27).

Best regards
Frank

  • You must to post comments
Showing 2 results