skip navigation
Telerik UI for WinForms
Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
NEW
: Design Kits for Figma
Online Training
Document Processing Library
Embedded Reporting for web and desktop
Web
Kendo UI
UI for jQuery
UI for Angular
UI for React
UI for Vue
UI for Blazor
UI for ASP.NET Core
UI for ASP.NET MVC
UI for ASP.NET AJAX
Mobile
UI for .NET MAUI
UI for Xamarin
Document Management
Telerik Document Processing
Desktop
UI for .NET MAUI
UI for WinUI
UI for WinForms
UI for WPF
Reporting
Telerik Reporting
Telerik Report Server
Testing & Mocking
Test Studio
Test Studio Dev Edition
Telerik JustMock
CMS
Sitefinity
UI/UX Tools
ThemeBuilder
Design System Kit
Templates and Building Blocks
Debugging
Fiddler
Fiddler Everywhere
Fiddler Classic
FiddlerCap
FiddlerCore
Free Tools
VB.NET to C# Converter
Testing Framework
View all products
Overview
Demos
Roadmap
What's New
Roadmap
Release History
Docs & Support
Support and Learning
Support and Learning Hub
First Steps
Docs
Demos
Virtual Classroom
Forums
Videos
Blogs
Accessibility and Security
Submit a Ticket
Productivity and Design Tools
Visual Studio Extensions
Visual Studio Templates
Embedded Reporting
Pricing
Shopping cart
Login
Contact Us
Try now
close mobile menu
Telerik Forums
/
UI for WinForms
This is a migrated thread and some comments may be shown as answers.
Tooltip for RadListBox
1 Answer
136 Views
ComboBox and ListBox (obsolete as of Q2 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Vimal Kanth
Top achievements
Rank 1
Vimal Kanth
asked on
08 Nov 2008,
01:47 PM
Hi,
I want to display a common tooltip to all the items of RadListBox. I 'm aware it is possible to set tooltip for Individual items. But i don't want to set for individual items.
Please let me know how to do this.
Regards,
Vimal
1 Answer
, 1 is accepted
Sort by
Score
Date
0
Nick
Telerik team
answered on
10 Nov 2008,
10:42 AM
Hello Vimal Kanth,
Thank you for your question.
Please see the following sample code below:
private
void
Form1_Load(
object
sender, EventArgs e)
{
this
.radListBox1.ToolTipTextNeeded +=
new
Telerik.WinControls.ToolTipTextNeededEventHandler(radListBox1_ToolTipTextNeeded);
}
void
radListBox1_ToolTipTextNeeded(
object
sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
{
e.ToolTipText =
"some tooltip"
;
}
Do not hesitate to write me back if you have further questions.
Kind regards,
Nick
the Telerik team
Check out
Telerik Trainer
, the state of the art learning tool for Telerik products.
Tags
ComboBox and ListBox (obsolete as of Q2 2010)
Asked by
Vimal Kanth
Top achievements
Rank 1
Answers by
Nick
Telerik team
Share this question
or
Copy link