Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the design of the ComboBox

I need to change the design of the Windows Forms ComboBox to this:
enter image description here

Do I need to redesign the button and inherit from UserControl, and start all the functionality from zero?

Or enough to inherit from ComboBox, and just what I need to do is change the graphics?
And if so, how do I do it?

like image 960
cheziHoyzer Avatar asked Jan 03 '13 10:01

cheziHoyzer


1 Answers

Do you have to use winforms? In .NET's WPF it is much easier to change the style of combo boxes (and other controls). You can find numerous tutorials and/or examples on the internet.

like image 175
Rudey Avatar answered Oct 11 '22 14:10

Rudey