ToolTip out of bound problem

Hi,

Please run the sample, maximize the window and hover on the New button.
The tool tip shows but it's too long and goes out of bound and it's really hard to read.

Also try the button where I'm using the super tooltip.

What to do?

Thanks,
Ronnie

ToolTipOutOfBoundSample.zip

1 Reply

GS Gopalakrishnan S Syncfusion Team February 7, 2007 05:51 PM UTC

Hi Ronnie,

Thanks for using Syncfusion products.

We could see the issue here. We have logged a defect report in this regard. I will contact the development team and update you the defect report link and time frame needed to fix the issue within a week.

Also, please try to set tooltip using SuperToolTip instead of normal tooltip.

You can set the tooltip using SuperToolTip for button.

Through Designer:

1) Drag and drop the SuperToolTip on your form.
2) When the SuperToolTip component is added to a form, an extended property ( ToolTip on SuperToolTip1) will be added to the properties of Button control.
Header: The Header is used to display text which is used as a header for the tooltip.
Body: This is the description part.
Footer: If additional information is needed, it can be entered in the footer part.

Through Code:
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfothroughCode = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
toolTipInfothroughCode.BackColor = SystemColors.Control;
toolTipInfothroughCode.Body.Text = "Button1";
toolTipInfothroughCode.Header.Text = "SuperToolTip";
toolTipInfothroughCode.Header.TextAlign = ContentAlignment.MiddleCenter;
toolTipInfothroughCode.BorderColor = Color.Red
toolTipInfothroughCode.Footer.Text = "Demo"
this.superToolTip1.SetToolTip(button1, toolTipInfothroughCode);

Thanks for bringing this issue into our notice.

Regards,
S.Gopal.

Loader.
Up arrow icon