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’
Hi Kay,
the bug (WJ-7955) is fixed in the latest development build (1.3.27).
Best regards
Frank
Yep, logged the bug. This is the workaround:
column.HeaderCell.ToolTipText = “TOOLTIP”;