Top "Combobox" questions

Combobox allows to select one option out of several (similar to a dropdownlist), or to type a custom option.

ComboBox SelectedItem vs SelectedValue

The following code works as you’d expect — MyProperty on the model is updated when the user picks a new …

c# winforms data-binding combobox
Binding Combobox Using Dictionary as the Datasource

I'm using .NET 2.0 and I'm trying to bind a combobox's Datasource to a sorted dictionary. So the error I'm getting …

c# .net winforms combobox datasource
Getting Serial Port Information

I have some code that loads the serial ports into a combo-box: List<String> tList = new List<…

c# sorting combobox serial-port
WPF MVVM ComboBox SelectedItem or SelectedValue not working

Update After a bit of investigating. What seems to be the issue is that the SelectedValue/SelectedItem is occurring before …

wpf mvvm combobox
WPF - add static items to a combo box

I've said it before and I'll say it again, the easiest examples for WPF are also the hardest to find …

wpf xaml combobox
ComboBox.SelectedText doesn't give me the SelectedText

I am building a String and the code looks like String status = "The status of my combobox is " + comboBoxTest.SelectedText …

c# winforms string combobox
Clear ComboBox selected text

I have a ComboBox control with the DropDownStyle properties set to DropDownList. Once there is an item selected, how can …

c# winforms drop-down-menu combobox
How can I create an editable combo box in HTML/Javascript?

I need to let users select an item from a dropdown list, but also allow them to instead enter any …

javascript html combobox drop-down-menu
jQuery "on create" event for dynamically-created elements

I need to be able to dynamically create <select> element and turn it into jQuery .combobox(). This should …

javascript jquery combobox
QComboBox - set selected item based on the item's data

What would be the best way of selecting an item in a QT combo box out of a predefined list …

c++ qt user-interface combobox qcombobox