Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Nikolay
Created on: 04 Jun 2010 09:18
Category: Dock
Type: Bug Report
2
FIX. FloatingWindow prevents ToolTip from showing
Let's have a TextBox, ToolTip and a FloatingWindow containing the TextBox. The following code snippet will not show a tooltip for the textbox:
            this.toolTip1.ToolTipTitle = "ToolTip";  
            string strToolTip = "Exemple";  
            this.toolTip1.SetToolTip(textBox1, strToolTip);  
            this.toolTip1.AutoPopDelay = 32767; 
            this.toolTip1.Active = true;
0 comments