When a comboBox in C# is dynamically populated the comboBox appears blank until the user clicks on it to view the available items in the dropdown. Ideally, I would like to use this blank space (prior to clicking the dropdown) to be used to give the user a hint as to what s/he should do. For example, it might say something like, "Select such-and-such..." Is there a way to do this? I tried setting the Text property, but that didn't do anything. I am using Microsoft Visual C# 2008 Express Edition. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Add the "hint" item to the combo box:
then set the selected index of the combo box to 0 like this:
|
|||||
|
|
It is called a "cue-banner". Windows Forms doesn't support it but it can be bolted on. Add a new class to your project and paste the code shown below. Compile. Drop a button and the new control from the top of the toolbox onto your form. Set the Cue property to the text you want to show. Vista or Win7 required, the cue is only visible if the combobox doesn't have the focus.
|
|||||||
|
|
All you need to do is set an event handler. In this case a click event handler should work. Add something like this:
|
|||
|
|
|
Set:
|
|||||
|