Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Thank you for the questions. You can get the ToolTip object out of a RadControl and set its AutoPopupDelay to a big value, for example, to int.MaxValue:
public
partial
class
Form1 : Form
{
Form1()
InitializeComponent();
ToolTip toolTip =
this
.radButton1.ElementTree.ComponentTreeHandler.Behavior.ToolTip;
toolTip.AutoPopDelay =
int
.MaxValue;
toolTip.ShowAlways =
true
;
.radButton1.ToolTipTextNeeded +=
new
Telerik.WinControls.ToolTipTextNeededEventHandler(radButton1_ToolTipTextNeeded);
}
void
radButton1_ToolTipTextNeeded(
object
sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
e.ToolTipText =
"Hi, I am a button"