how to view all items in combobox when focus comes to combo
how to view all items in combobox when focus comes to that combobox
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sujeet SumanPosted Jun 13, 2015, 6:28 AM
{
comboBox1.DroppedDown = true;
}
private void comboBox1_Leave(object sender, EventArgs e)
{
comboBox1.DroppedDown = false;
}
Alok UniyalPosted Jun 13, 2015, 4:31 AM