Click here to Skip to main content
15,891,943 members
Articles / Desktop Programming / WPF

A WPF SplitButton

Rate me:
Please Sign up or sign in to vote.
4.71/5 (44 votes)
20 Oct 2007CPOL2 min read 310.4K   9.5K   101   76
A Themed WPF SplitButton
Screenshot - SplitButton_a.jpg

Introduction

As the Windows Presentation Foundation (WPF) does not have a split button built-in, I decided to have a go at writing one. As I am fairly new to this Framework, I wanted something simple to start with, and this is what I came up with.

Although it would be possible to create a split button using Styles and Control Templates, I wanted to support the Windows Themes so a custom control seemed like the way to go.

The Control derives from System.Windows.Controls.Button.

Using the Code

To add a split button to a window, reference the assembly, then add an XML namespace to the Windows XAML file as shown below:

XML
xmlns:m="clr-namespace:Wpf.Controls;assembly=Wpf.SplitButton"

The XAML below adds a split button to a window and shows how to add MenuItems that will be displayed by the context menu:

XML
<m:SplitButton Content="Split Button" Placement="Bottom">
    <MenuItem Header="MenuItem 1"/> 
    <MenuItem Header="MenuItem 2"> 
        <MenuItem Header="MenuItem 1"/> 
        <MenuItem Header="MenuItem 2"/> 
    </MenuItem>
</m:SplitButton

The control assembly has a style defined for each of the Windows themes. To draw the control, I've used the ButtonChrome classes from the PresentationFramework DLLs.
The demo project has copies of these styles in the DemoStyles folder so that I could display each theme in the demo window using the x:Key attribute.

I've also added a Style that looks like a Button in Windows Explorer running on Windows Vista. To use this style, you have to set the Style property of the SplitButton explicitly using the following syntax:

XML
Style="{DynamicResource {x:Static m:SplitButtonResources.VistaSplitButtonStyleKey}}" 

Screenshot - SplitButton_vista.jpg

Vista Styled Button with an Icon

Points of Interest

As shown above, the Button includes an Icon property.

To place the context menu, use the Placement, PlacementRectangle, HorizontalOffset and VerticalOffset properties. These are dependency properties defined by the ContextMenuService class, using the AddOwner method. I've added callbacks to each of these properties where I can set the equivalent property on the base Button's internal context menu.

The Button has two modes as defined by the Mode property, Split, which is the default and Dropdown. In Split mode, the control has two parts, the Button part which acts just like a normal button firing the Click event, and a dropdown button which displays the context menu when clicked. In Dropdown mode, clicking anywhere on the button displays the context menu.

Issues

This control was developed using the Beta2 release of Visual Studio 2008. Unfortunately the demo project does not display in the cider designer (for me anyway). This may be a bug in Visual Studio as it displays fine in Expression Blend and compiles and runs without problems.

History

24-Sept-2007: Article posted

02-Oct-2007: Article updated

  • As was discussed in the Icon Thread in the comments below, I've removed the Icon property from the SplitButton as it simply wasn't needed. The demo now includes the preferred method of adding an icon to the button as described by Josh.

09-Oct-2007: Article updated

  • Fixed the error in the demo

20-Oct-2007: Article updated

  • Bug fixes

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThe selected item does not display in the button. Pin
west18824-Sep-09 21:20
west18824-Sep-09 21:20 
GeneralToolbar question Pin
David Veeneman11-Sep-09 9:57
David Veeneman11-Sep-09 9:57 
QuestionWhat a GREAT control! Pin
MrPMorris4-Sep-09 6:24
MrPMorris4-Sep-09 6:24 
QuestionHow do I add child MenuItems programatically? Pin
mraviator6-Aug-09 4:31
mraviator6-Aug-09 4:31 
AnswerRe: How do I add child MenuItems programatically? Pin
acm_hk25-Sep-11 21:20
acm_hk25-Sep-11 21:20 
GeneralSplit Button Silverlight Pin
Ciclyng26-May-09 22:28
Ciclyng26-May-09 22:28 
GeneralGreat stuff! Pin
Super Lloyd6-Apr-09 14:20
Super Lloyd6-Apr-09 14:20 
GeneralThis is really awesome, I just have a couple problems Pin
ssing10-Mar-09 23:04
ssing10-Mar-09 23:04 
Thanks for posting this article. I really like it.

I'm using this with vs2008, SP1 and I'm having a couple problems.

1. The SplitButton project has a reference to Microsoft.Windows.Design.Markup which is not found on my system, but it doesn't seem to prevent me from running the demo.
2. I tried changing the mode to Dropdowm (see below) from the default Split and when I click anywhere on the button, nothing drops down.

<m:SplitButton Mode="Dropdown" Margin="0,1,0,1" Padding="5,0,5,0" Placement="Bottom" HorizontalAlignment="Center" VerticalAlignment="Center" Height="24"  Click="SplitButton_Click"
    Style="{DynamicResource {x:Static m:SplitButtonResources.VistaSplitButtonStyleKey}}">
    <m:SplitButton.Content>
        <StackPanel Orientation="Horizontal">
            <Image Source="Icons\mail.ico" Width="16" Height="16"/>
            <TextBlock Text="Send/Receive" Margin="3,0,0,0"/>
        </StackPanel>
    </m:SplitButton.Content>
    <MenuItem Header="Send and receive _all"/>
    <MenuItem Header="Receive All"/>
    <MenuItem Header="Send All"/>
    <Separator/>
    <MenuItem Header="Hotmail (Default)"/>
    <MenuItem Header="Gmail"/>
</m:SplitButton>

GeneralRe: This is really awesome, I just have a couple problems Pin
ssing11-Mar-09 11:03
ssing11-Mar-09 11:03 
GeneralRe: This is really awesome, I just have a couple problems Pin
alrh12-Mar-09 0:05
alrh12-Mar-09 0:05 
QuestionBug (and suggested fix) found in some of the themes Pin
matte3033-Feb-09 9:52
matte3033-Feb-09 9:52 
AnswerRe: Bug (and suggested fix) found in some of the themes Pin
alrh12-Mar-09 2:30
alrh12-Mar-09 2:30 
GeneralRe: Bug (and suggested fix) found in some of the themes Pin
matte30312-Mar-09 7:23
matte30312-Mar-09 7:23 
GeneralRe: Bug (and suggested fix) found in some of the themes Pin
alrh12-Mar-09 8:13
alrh12-Mar-09 8:13 
GeneralRe: Bug (and suggested fix) found in some of the themes Pin
matte30323-Mar-09 6:39
matte30323-Mar-09 6:39 
GeneralAdding a Button Mode Pin
JohnDev21-Jan-09 13:38
JohnDev21-Jan-09 13:38 
QuestionStyling in a Toolbar Pin
Paul Auger8-Oct-08 18:51
Paul Auger8-Oct-08 18:51 
QuestionDropDownButton? Pin
The Cake of Deceit7-May-08 0:29
The Cake of Deceit7-May-08 0:29 
AnswerRe: DropDownButton? Pin
John Simmons7-May-08 1:38
John Simmons7-May-08 1:38 
GeneralRe: DropDownButton? Pin
The Cake of Deceit7-May-08 7:20
The Cake of Deceit7-May-08 7:20 
QuestionRe: DropDownButton? Pin
Member 276609119-Aug-08 7:38
Member 276609119-Aug-08 7:38 
AnswerRe: DropDownButton? Pin
John Simmons19-Aug-08 23:19
John Simmons19-Aug-08 23:19 
AnswerRe: DropDownButton? Pin
ssing11-Mar-09 11:01
ssing11-Mar-09 11:01 
GeneralProblem in placing this control inside a tool bar Pin
Venkatesh Mookkan1-Apr-08 19:47
Venkatesh Mookkan1-Apr-08 19:47 
QuestionMerging SplitButton into another project Pin
Joe Puccia30-Jan-08 10:16
Joe Puccia30-Jan-08 10:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.