Shamim Hafiz - MSFT
Shamim Hafiz - MSFT

Reputation: 22104

What Event Handler is called when C# ComboBox value is changed by Typing

I would like to capture the event when user changes value of ComboBox by typing.

The SelectedIndexChanged only works if user chooses an option from drop down value, what about when ComboBox text is changed by typing.

Upvotes: 2

Views: 5355

Answers (1)

Harsh
Harsh

Reputation: 3751

The TextChanged event will work for you

ComboBox1_TextChanged(Object sender, EventArgs e) 

Upvotes: 3

Related Questions