Hi Javier,
To be able to see the Tooltip over the TextBox and Buttons of the ButtonEdit control, set the Tooltip as shown in the code below :
this.toolTip1.SetToolTip(this.buttonEdit1, "ButtonEdit Tooltip Test");
this.toolTip1.SetToolTip(this.buttonEdit1.TextBox, "ButtonEdit Tooltip Test");
foreach (Button b in this.buttonEdit1.Buttons)
{
this.toolTip1.SetToolTip(b, "ButtonEdit Tooltip Test");
}
Please refer to the
sample attached that shows this and let me know if it meets your requirements. Thanks for choosing Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.