vote up 2 vote down star
1

I'm writing a touch screen .net winforms application and need a combobox with a larger dropdown arrow. Is there any way to resize the arrow, or am I looking at writing a custom control?

flag

4 Answers

vote up 1 vote down

I think the button's size is determined by a combination of the system font size and the system scroll-bar dimensions, both of which are controlled by the display properties.

Another option is to configure the combo box to drop down when it receives focus. That way, touching anywhere on the box will make it drop down. Users might not realize that, and "aim" for the narrow button, but I see no real harm in that.

link|flag
I agree that this is the easiest solution, however, there are some instances where the user will be required to fill in their selection if it is missing from the combobox choices. – Stan Dec 11 '08 at 16:41
vote up 0 vote down

Can you switch to WPF? It's easier to make/derive custom controls in wpf. Alternatively you could just embed a WPF control in your winform.

Rolling your own control in Winforms is horrible.

link|flag
vote up 0 vote down

Take a look at JCSelector it's an open source .NET control that may help you. Go to the codeplex website at jcselector.codeplex.com

link|flag
vote up -1 vote down

You could put a larger button near the dropdown that would open the dropdown list.

 private void Button1_Click(object sender, EventArgs e)
    {
        comboBox1.DroppedDown = true;
    }
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.