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
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