ComboBoxStyle

G

Guest

The ComboBox.DropDownStyle property has a type of ComboBoxStyle, which is an
enumeration. According to the MSDN docs, this enum has three values:
DropDown, DropDownList and Simple. However, I am not able to compile with a
value of DropDown.

Is this value not supported in the Compact Framework?
If not, why? And how can I create a combobox that allows the user to type
in the text box?

Thanks
 
P

Peter Foot [MVP]

That is correct, the Compact Framework control supports only DropDownList.
You can either build a custom control or use some combination of TextBox and
ComboBox to allow the user to enter text.

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top