Top "Combobox" questions

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

Getting selected value of a combobox

public class ComboboxItem { public string Text { get; set; } public string Value { get; set; } public override string ToString() { return Text; } } private …

c# combobox selecteditem selectedvalue selectedindexchanged
How do I clear a combobox?

I have some combo-boxes that are set up as drop down lists, and the user can pick a number in …

c# winforms combobox
How to set selected value from Combobox?

I use combobox in c# windows form. I bound the item list as below: var employmentStatus = new BindingList<KeyValuePair&…

c# .net winforms data-binding combobox
C# - Fill a combo box with a DataTable

I'm used to work with Java where large amounts of examples are available. For various reasons I had to switch …

c# .net combobox datatable sharpdevelop
How can I make a ComboBox non-editable in .NET?

I want to have a "select-only" ComboBox that provides a list of items for the user to select from. Typing …

c# .net winforms combobox
How to get the selected item of a combo box to a string variable in c#

Can anyone tell me how to get the selected item of a ComboBox to a string variable? string selected = cmbbox.…

c# combobox
ComboBox- SelectionChanged event has old value, not new value

C#, .NET 4.0, VS2010. New to WPF. I have a ComboBox on my MainWindow. I hooked the SelectionChanged event of said …

c# wpf combobox .net-4.0 selectionchanged
Binding an enum to a WinForms combo box, and then setting it

a lot of people have answered the question of how to bind an enum to a combo box in WinForms. …

c# .net winforms combobox enums
How can I create an editable dropdownlist in HTML?

I'd like to create a text field with a dropdown list that lets the user choose some predefined values. The …

html combobox html-select