When creating a combobox on the design surface of a VB.NET app in VS 2008 it is white and when creating it in C# it is gray.
How do I create a combobox in C# that looks just like the VB.NET one? (Style wise)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The different styles are because of the drop-down style of these controls. To get the same style as for VB.NET, you can simply change the drop-down style property to “dropDown” for the ComboBox in C#.