Page 1 of 1
Modify Duration ToolTip
Posted: Tue Apr 24, 2012 4:39 am
by Saus86
Hi
I want modify the duration time of my tooltip...Is Possible?!?....
I dont have found nothing property and i have try to use basic C# ToolTip ...but the 2nd parameter is not correct
because require a component class 'System.Windows.Forms.IWin32Window' and not 'Stimulsoft.Report.Components.StiText'
ToolTip app= new ToolTip();
app.Show("Ciao", Text20, 3000);
Thanks!!!
Modify Duration ToolTip
Posted: Wed Apr 25, 2012 2:45 am
by Alex K.
Hello,
Can you please describe your task in more details?
Thank you.
Modify Duration ToolTip
Posted: Thu Apr 26, 2012 3:34 am
by Saus86
I want the tooltip that appears when I bring the mouse over a text remains displayed for more time and if there is no parameter to set this time.
In addition I would make sure that when I bring the mouse over a text, in the event enterMouse text, change the color of content dynamically and then returns to original color once I leave I move the mouse from the text.
Example
...
this.Text33.Brush = new Stimulsoft.Base.Drawing.StiGlareBrush(System.Drawing.Color.Tomato, System.Drawing.Color.White, 0, 0.5F, 1F);
...
Thanks
Modify Duration ToolTip
Posted: Sat Apr 28, 2012 2:54 am
by HighAley
Hello.
Saus86 wrote:I want the tooltip that appears when I bring the mouse over a text remains displayed for more time and if there is no parameter to set this time.
In addition I would make sure that when I bring the mouse over a text, in the event enterMouse text, change the color of content dynamically and then returns to original color once I leave I move the mouse from the text.
Example
...
this.Text33.Brush = new Stimulsoft.Base.Drawing.StiGlareBrush(System.Drawing.Color.Tomato, System.Drawing.Color.White, 0, 0.5F, 1F);
...
You could set the tooltip by using the Tool Tip property of the Text box. But it's impossible to set how long it will be visible.
Thank you.