ComboBox like a button?

c#, winforms

Solution

This is called `SplitButton` and in .NET you have this available for toolbars but not for use in normal WinForms.

However, there are some alternatives such as:

- This one on Codeproject

- Another on CodeProject

- Another one here

Problem

I have seen comboBoxes that looks like buttons with a small arrow to the right at the bottom, indicating that it's a drow down menu with several options. How is this done? Is there something I can change in the properties of the comboBox? Thanks! EDIT: I'm using Windows Forms in Visual Studio 2010

Original source