Posted 20 March 2025, 10:07 pm EST - Updated 21 March 2025, 1:45 am EST
Another migration related issue/question:
In the .NET 4.8 version of the C1 Winforms suite a ToolTip for a C1Label, C1TextBox, C1DateEdit, C1NumericEdit could be set with:
ToolTip toolTip = new ToolTip();
toolTip.SetToolTip(this.c1TB_Name, "Name");
But with the latest 8.0.20241.664 version of the C1 Winforms suite - this approach only works correctly for C1Label; for C1TextBox, C1DateEdit and C1NumericEdit, the code above compiles/runs, but the ToolTip will not show for a C1TextBox, C1DateEdit and C1NumericEdit control.
However when at runtime querying e.g. a C1TextBox, the correct ToolTip text is returned (‘Name’):
toolTip.GetToolTip(this.this.c1TB_Name);
I can’t find any documentation/example on how to configure a plain Winforms ToolTip for the C1TextBox, C1DateEdit and C1NumericEdit .NET 6+ controls. The inconsistency with C1Label is remarkable.