Top "Combobox" questions

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

How to prevent manual input into a ComboBox in C#

I have a form in C# that uses a ComboBox. How do I prevent a user from manually inputting text …

c# string combobox
How do I find an item by value in an combobox in C#?

In C#, I have variable, a, of type string. How do I find item by value of a in combobox (…

c# combobox find items
WPF Combobox DisplayMemberPath

Ok, I looked at other questions and didn't seem to get my answer so hopefully someone here can. Very simple …

wpf combobox
Is there any difference between drop down box and combo box?

Is there any difference between drop down box and combo box [ HTML ]? Actually the point is, everytime i say something …

html drop-down-menu combobox user-controls
How do I have an enum bound combobox with custom string formatting for enum values?

In the post Enum ToString, a method is described to use the custom attribute DescriptionAttribute like this: Enum HowNice { [Description("…

c# combobox enums
How to Set default combobox

So I've been looking to set a default value for my combobox. I found a few things but none of …

c# winforms combobox populate
Populate Combobox from a list

Newb here, I'm currently working on a form which has a combo box, which will show several Charlie Brown TV …

c# list class combobox populate
Stop comboBox's selectedIndexChanged event from firing when the form loads

I have a form with a ComboBox that provides a dropdownlist. On the comboBox's SelectedIndexChanged event, am running some code, …

winforms data-binding combobox
fxml combobox, get the selected value into javafx

how can i catch the selected value of a fxml combobox and implement it into a javafx class? i gave …

combobox javafx fxml
ComboBox.SelectedValue not updating from binding source

Here's my binding source object: Public Class MyListObject Private _mylist As New ObservableCollection(Of String) Private _selectedName As String Public …

wpf data-binding binding combobox