Reputation: 1669
How do I get multi-line text on a WPF Button using only C#? I have seen examples of using <LineBreak/>
in XAML, but my buttons are created completely programmatically in C#. The number and labels on the buttons correspond to values in the domain model, so I don't think I can use XAML to specify this.
I have tried the naive approach below, but it does not work.
Button b = new Button();
b.Content = "Two\nLines";
or
b.Content = "Two\r\nLines";
In either case, all i see is the first line ("Two") of the text.
Upvotes: 79
Views: 111347
Reputation: 311315
Have you tried this?
b.Content = new TextBlock {
Text = "Two\nLines",
TextWrapping = TextWrapping.Wrap };
If that doesn't work, then you could try adding a StackPanel as a child and adding two TextBlock elements to that.
Upvotes: 8
Reputation: 11626
As an alternative/workaround if you gotta use an external custom button which you can't edit its content easily, you can always use a Grid and overlay the functional part of the button over your visual if it can be static.
<Grid>
<TextBlock Foreground="LightGray">Click<LineBreak />Here</TextBlock>
<MyCustomButton BorderBrush="Transparent" IsPressed="{Binding MyBtn.IsPressed, Mode=TwoWay}" />
</Grid>
Upvotes: 0
Reputation: 342
Try below code:
<Button Command="{Binding DeliveryDateCommand}" x:Name="cntlbtnf5" Background="White" BorderBrush="#FFABADB3" Grid.Column="4">
<Border BorderBrush="{x:Null}" Height="Auto">
<TextBlock Text="Ctrl + F5 Delivery BillDate" TextWrapping="Wrap" Width="110" TextAlignment="Center" Height="44" />
</Border>
</Button>
Upvotes: 0
Reputation: 317
I had the same issue.
I tried:
- button.content = "Line1\nLine2" (didn't work, maybe I did something wrong);
- replace button text with a new label (doesn't let you center align the text);
- replace button text with a text block (I think this lets you center align the text but doesn't wrap it);
I've seen answers mentioning the use of stackpanels or grids.
I've seen answers saying not to use a Textbox.
Even though the OP says that the \n
works, I don't think that that is the way to go, in my opinion you're just brute forcing the control to do what you want and if at any point you need to change the text you will have to go and check if the text is correctly wrapped or if the \n
needs to be in another position.
What I found to be the best way to go (to me) is to replace the button content with a text box (you can just drag and drop, no need to mess with XAML) and set the following properties as stated:
IsReadOnly = true;
Focusable = false (optional);
I think Focusable = false
prevents the user from selecting the text, even though he can't edit it, I don't want him to even select it (personal taste).
This will make the text box behave similar to a label but with the advantage that lets you center align the text.
Upvotes: 0
Reputation: 5213
Answer is very simple. Just use 

to introduce line-break, i.e.:
<Button Content="Row 1 Text 
 Row 2 Text"/>
Upvotes: 55
Reputation: 4271
There are several ways to do this via XAML:
<Button> <TextBlock TextAlignment="Center">Line 1<LineBreak/>Line 2</TextBlock> </Button>
This method is simple but there is no way to easily control the alignment of the text:
<Button Content="Line 1 
 Line 2"/>
Once the Buttons size is smaller than the TextBlocks size it will simply split the content into two lines or more automatically
<Button> <TextBlock TextWrapping="Wrap" HorizontalAlignment="Center">Line 1 Line 2</TextBlock> </Button>
<Button> <StackPanel> <TextBlock Text="Line1" HorizontalAlignment="Center"/> <TextBlock Text="Line2" HorizontalAlignment="Center"/> </StackPanel> </Button>
<Button> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <TextBlock Text="Line1" HorizontalAlignment="Center"/> <TextBlock Text="Line2" HorizontalAlignment="Center"/> </Grid> </Button>
Upvotes: 32
Reputation: 1669
Turns out the "\n" works fine. My grid had a fixed size, and there is simply no visual indication in a button that there's more text available (e.g., no "..." indicating a cutoff). Once I generously expanded the size of my grid, the button text showed up in two rows.
Upvotes: 9
Reputation: 171
This is how we do it here it allows for easy centering as well
<Button Height="40" Width="75">
<StackPanel>
<TextBlock Text="Line1" HorizontalAlignment="Center"/>
<TextBlock Text="Line2" HorizontalAlignment="Center"/>
</StackPanel>
</Button>
Upvotes: 13
Reputation: 1064
I prefer this way:
<Button Width="100">
<TextBlock TextWrapping="Wrap">This is a fairly long button label</TextBlock>
</Button>
it worked for me.
Upvotes: 61
Reputation: 1201
OR in XAML directly:
<Button>
<TextBlock>Two<LineBreak/>Lines</TextBlock>
</Button>
Upvotes: 117
Reputation: 1503389
How about:
TextBlock textBlock = new TextBlock();
textBlock.Inlines.Add("Two");
textBlock.Inlines.Add(new LineBreak());
textBlock.Inlines.Add("Lines");
Button button = new Button();
button.Content = textBlock;
If you're using C# 3 you can make that slightly neater:
Button button = new Button
{
Content = new TextBlock { Inlines = { "Two", new LineBreak(), "Lines" } }
};
Upvotes: 4