标签中的文字被截断

时间:2018-10-19 11:54:46

标签: c# wpf

考虑以下WPF-

enter image description here

问题是,如果标签中出现的文本长于标签的宽度,则会被截断。

XAML -标签名称为“ factTxt”

<Window x:Name="mainScreen" x:Class="FactsOnAll.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:FactsOnAll"
        mc:Ignorable="d"
        Title="Random Facts" Height="450" Width="800" Icon="Properties/checklist.png">
    <Grid>
        <Button x:Name="getFactBtn" Content="Get Random Fact" HorizontalAlignment="Left" Margin="304,331,0,0" VerticalAlignment="Top" Width="177" Click="getFactBtn_Click" FontSize="20" Background="#FF8ECF87" Foreground="#FF444444"/>
        <Label x:Name="factTxt" Content="" Margin="10,98,10,0" VerticalAlignment="Top" HorizontalAlignment="Center" FontSize="20"/>
        <Label x:Name="titleTxt" Content="Random Facts" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="772" Height="46" FontSize="24"/>

    </Grid>
</Window>

期望结果

允许文本换行。我认为增加标签的高度可以解决此问题,但没有运气。

1 个答案:

答案 0 :(得分:1)

标签没有换行,只有一个TextBlock。 您可以创建类似自定义内容的内容,该内容会自动包装:

<Label Width="100">
  <TextBlock Text="Get Random Fact" TextWrapping="Wrap"/>
</Label>