New to Telerik UI for WinFormsStart a free 30-day trial

Setting a Tooltip Text for Action Buttons in RadChat Toolbar

Updated on Oct 7, 2025

Environment

Product VersionProductAuthor
2025.3.812RadChat for WinFormsDinko Krastev

Description

In this tutorial, we will demonstrate how to set the ToolTipText property of the RaChat control Toolbar action buttons.

Solution

To set tooltip text for action buttons in the toolbar, access the ToolbarActionElement objects inside the ItemsLayout. Use the following code snippet:

C#

foreach (ToolbarActionElement element in this.radChat1.ChatElement.ToolbarElement.ItemsLayout.Children)
{
    element.ToolTipText = "ToolTip Text";
}

See Also