Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How di I make a newline in the text for a checkbox? I've tried \n but it didn't work?

EDIT: this is my CheckBox

<CheckBox xml:space="preserve"  Height="16" HorizontalAlignment="Left" Margin="360,46,0,0" Name="ShowOldRegistrations" VerticalAlignment="Top" Checked="ShowOldRegistrations_Checked" Unchecked="ShowOldRegistrations_UnChecked">
    <StackPanel  Height="42" Width="108">
        <TextBlock>Line1</TextBlock>
        <TextBlock>Line2</TextBlock>
    </StackPanel>
</CheckBox>
share|improve this question
Are you trying to do this in code, or in XAML? – Joe White May 20 '11 at 14:41
XAML - sorry for not making that clear :) – Xeano May 20 '11 at 14:43

3 Answers

up vote 1 down vote accepted

In WPF, you can put any control almost anywhere. So you could try this:

<CheckBox>
    <StackPanel>
        <TextBlock>foo</TextBlock>
        <TextBlock>bar</TextBlock>
    </StackPanel>
</CheckBox>

Also, you need to remove the Height property from your checkbox. Of course only one line gets displayed if the height doesn't permit displaying more.

In WPF, in most cases you don't need to (nor should) specify absolute dimensions for your controls. They can adjust automatically quite well.

share|improve this answer
Did not work out. It just doesn't show bar, shows foo however :) – Xeano May 20 '11 at 14:48
1  
How does your checkbox code look like? It worked for me. :) – Botz3000 May 20 '11 at 14:50
You need to remove the height so that the checkbox can adjust to the added lines. Updated my answer. – Botz3000 May 20 '11 at 15:01
It works! thanks a lot :) – Xeano May 20 '11 at 15:03
Why do you need the StackPanel ? – burga Nov 7 '12 at 14:45
    <CheckBox Content="Stuff on line1&#x0a;Stuff on line 2" />
share|improve this answer

You should not use a StackPanel for line-breaks, TextBlocks can do that easily:

<CheckBox>
    <TextBlock>
        <Run Text="Line 1"/>
        <LineBreak/>
        <Run Text="Line 2"/>
    </TextBlock>
</CheckBox>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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