---
title: "Tooltip On Combobox Dropdown Items In C#.NET"  
description: "Tooltip On Combobox Dropdown Items In C#.NET"  
author: "Anonymous User"  
published: 2014-10-21  
updated: 2014-10-21  
canonical: https://www.mindstick.com/forum/2427/tooltip-on-combobox-dropdown-items-in-c-sharp-dot-net  
category: ".net"  
tags: ["c#", ".net"]  
reading_time: 1 minute  

---

# Tooltip On Combobox Dropdown Items In C#.NET

I need an [event](https://www.mindstick.com/articles/167719/marquee-hire-benefits-of-event-lighting-hire-london) to be raised when [mouse](https://yourviews.mindstick.com/story/5122/the-story-behind-lord-ganesha-s-mouse-mushak) hovers over Combo Box [items](https://www.mindstick.com/forum/33812/getting-number-of-items-selected-in-uicollectionview-in-ios) so that I could provide [ToolTip](https://www.mindstick.com/articles/1529/simple-tooltip-using-html-css) for Items of dropDownArea of ComboBox. \
how to get [index](https://www.mindstick.com/blog/198/index-in-sql-server) of comboBoxItem pointed by [cursor](https://www.mindstick.com/articles/13003/create-a-simple-cursor-in-sql-server) ? \
Thanks in advance.

## Replies

### Reply by Takeshi Okada

Below code will help you to achieve your goal. //// This method binds tooltip with a dropdown/ any list control//public static void BindTooltip(ListControl lc) { for (int i = 0; i < lc.Items.Count; i++) { lc.Items[i].Attributes.Add("title", lc.Items[i].Text); }}


---

Original Source: https://www.mindstick.com/forum/2427/tooltip-on-combobox-dropdown-items-in-c-sharp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
