0

I am making a WPF combobox but the dropdown button is way too small and I need to make it bigger. I tried searching through the properties in the user control but I couldn't find anything. If someone could help me, that'd be great, thanks in advance.

H.B.
  • 166,899
  • 29
  • 327
  • 400

1 Answers1

1

you are using WPF, all you have to do is redefine the control template. that is one of the great things about WPF. the controls are "lookless" and you can tell define what they look like or you can use the default. here is the default template. and here is an article on using control templates to customize your WPF

Muad'Dib
  • 28,542
  • 5
  • 55
  • 68
  • That is not the default template, it's an example template. How to get the defaults: http://stackoverflow.com/questions/1559261/control-template-for-existing-controls-in-wpf – H.B. Mar 12 '12 at 00:09