New to Telerik UI for WinForms? Start a free 30-day trial
Tooltips
Updated over 6 months ago
There are two ways to assign tooltips to RadDropDownButton, namely setting the ToolTipText property of the DropDownButtonElement, or as in most of the RadControls by using the ToolTipTextNeeded event of RadDropDownButton. It is necessary the ShowItemToolTips property to be set to true which is the default value.
Setting the ToolTipText property
C#
this.radDropDownButton1.DropDownButtonElement.ToolTipText = "Click me";
In order to assign different tooltips for the action part and the arrow button, you must specify the ToolTipText property of the DropDownButtonElement.ActionButton or DropDownButtonElement.ArrowButton element.

Setting tool tips in the ToolTipTextNeeded event
C#
private void RadDropDownButton1_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
{
ActionButtonElement actionButtonElement = sender as ActionButtonElement;
RadArrowButtonElement arrowButtonElement = sender as RadArrowButtonElement;
if (actionButtonElement!=null)
{
e.ToolTipText = "ActionButtonElement";
}
else if (arrowButtonElement!=null)
{
e.ToolTipText = "RadArrowButtonElement";
}
}

The ToolTipTextNeeded event has higher priority and overrides the tool tips set in the ToolTipText property.