Multiline Text in a WPF Button

2020-05-18 04:10发布

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.

标签: c# wpf multiline
10条回答
别忘想泡老子
2楼-- · 2020-05-18 04:55

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.

查看更多
Fickle 薄情
3楼-- · 2020-05-18 04:58

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.

查看更多
做个烂人
4楼-- · 2020-05-18 04:59

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" } }
};
查看更多
放荡不羁爱自由
5楼-- · 2020-05-18 05:01

There are several ways to do this via XAML:

  1. Add a TextBlock with a line-break:
<Button>     
    <TextBlock TextAlignment="Center">Line 1<LineBreak/>Line 2</TextBlock>
</Button>
  1. Add a line-break in the text:

This method is simple but there is no way to easily control the alignment of the text:

    <Button Content="Line 1 &#xa; Line 2"/>
  1. Add a Text Block and Wrap the text

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>
  1. Use can a StackPanel in your Button, and add each line as a Text Block:
<Button>
    <StackPanel>
        <TextBlock Text="Line1" HorizontalAlignment="Center"/>
        <TextBlock Text="Line2" HorizontalAlignment="Center"/>
    </StackPanel>
</Button>
  1. Use a Grid in your 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>
  • I'm sure many more exist, the list is basically in order from most to least favorite.
查看更多
成全新的幸福
6楼-- · 2020-05-18 05:03

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>
查看更多
狗以群分
7楼-- · 2020-05-18 05:03

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>
查看更多
登录 后发表回答