vote up 2 vote down star

I would like to make a CheckBox that looks exactly like a button. My initial feeble attempt doesn't work at all.

<CheckBox x:Name="test">
    Testing!
    <CheckBox.Template>
        <ControlTemplate>
            <Button>
                <ContentPresenter/>
            </Button>
        </ControlTemplate>
    </CheckBox.Template>
</CheckBox>

The ContentPresenter isn't working (the button is empty) and when the button is clicked, the IsChecked property does not toggle. Also, I don't know how to make the button look pushed when IsChecked is true.

flag

72% accept rate

4 Answers

vote up 2 vote down check

Would a ToggleButton suit your needs? CheckBox derives from it, and so they are very similar.

link|flag
Yes, I had no idea there was already separate class for a CheckBox that looks like a button. – Qwertie Jun 18 at 18:10
vote up 0 vote down

Since it looks like you've got your technical solutions, here is a caveat.

You've probably already verified this, but 2-state buttons (as opposed to checkboxes) are a relatively obscure GUI element that I've found confusing to most users. A small percentage of users are only likely to have encountered them in a toolbar, let alone the main app.

If your users are a small and stable group, especially if they've gotten used to 2-state buttons, you've got no worries; but if you're expecting diverse users to continually flow into your system, you could save them an average of 10 seconds of confusion per user per first visit (own research, admittedly).

link|flag
Fear not. I'm actually using it as a pop-up menu-like dialog. The user clicks the button (whose label ends with "...", e.g. "Options...") and a popup dialog appears underneath the button. The popup's IsOpen is bound to the button's IsChecked: IsOpen="{Binding Path=IsChecked,ElementName=_btnTurnBasedGraph,Mode=TwoWay}" – Qwertie Jun 22 at 19:58
vote up 1 vote down

I agree that ToggleButton is the way to go, but if you want your content to show up in your example, try changing your ContentPresenter declaration to this:

<ContentPresenter Content="{TemplateBinding Content}" />
link|flag
This works if I change the ControlTemplate declaration to <ControlTemplate TargetType="{x:Type CheckBox}"> – Qwertie Jun 18 at 18:12
vote up 2 vote down

I've just started to write same comment :)

<ToggleButton Name="tb"  Height="45" Width="45">
        <ToggleButton.Style>
            <Style TargetType="{x:Type ToggleButton}">
                <Setter Property="Content" Value="False"/>
                <Style.Triggers>
                    <Trigger Property="IsChecked" Value="True">
                        <Setter Property="Content" Value="True"/>
                    </Trigger>
                </Style.Triggers>
            </Style>
        </ToggleButton.Style>
    </ToggleButton>

And now as you wanted, Checkbox control:

<CheckBox>
        <CheckBox.Template>
            <ControlTemplate TargetType="CheckBox">
                <ToggleButton x:Name="toggleButton">
                </ToggleButton>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsChecked" Value="True" SourceName="toggleButton">
                        <Setter Property="Content" Value="True"/>
                    </Trigger>
                    <Trigger Property="Content" Value="True">
                        <Setter Property="IsChecked" Value="True"/>
                    </Trigger>
                </ControlTemplate.Triggers>
             </ControlTemplate>
        </CheckBox.Template>
    </CheckBox>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.