Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
private
ToolTip toolTip =
null
;
string
tip =
""
toolTip =
this
.radCalendar1.ElementTree.ComponentTreeHandler.Behavior.ToolTip;
toolTip.Popup +=
new
PopupEventHandler(toolTip_Popup);
.radCalendar1.ToolTipTextNeeded +=
ToolTipTextNeededEventHandler(radCalendar1_ToolTipTextNeeded);
void
toolTip_Popup(
object
sender, PopupEventArgs e)
{
e.ToolTipSize =
Size(50, 300);
}
radCalendar1_ToolTipTextNeeded(
sender, ToolTipTextNeededEventArgs e)
"This is quite a long tip and will be broken down into several lines when the user hovers over and has a look at the tip"
e.ToolTipText = tip;
toolTip.BackColor = System.Drawing.Color.LightBlue;
toolTip.IsBalloon =
true