RF
Rashidha F
Syncfusion Team
June 25, 2007 12:46 PM UTC
Hi Christoph,
Thanks for using Syncfusion Products.
Please have a look at the following code snippet.
MyToolTip tooltip1 = new MyToolTip();
tooltip1.UseFading = Syncfusion.Windows.Forms.Tools.SuperToolTip.FadingType.Blend;
Syncfusion.Windows.Forms.Tools.ToolTipInfo x=new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
x.Body.Text = "Supertooltip";
Point point=new Point(10,10);
x.BackColor = Color.Orange;
x.BorderColor = Color.Blue;
tooltip1.Show(x, point, 2000);
x.Header.Text = "Essential Tools";
x.Footer.Text = "-Tooltip";
x.Header.Font=new Font("Impact",8);
x.Header.ForeColor = Color.Green;
x.Separator = true;
The following code snippet which illustrate how to customize the tooltip in your application.
Please let me know if you have any more queries.
Regards,
Rashidha.