24

TextBlock我正在尝试设置in 的圆角xaml。但是没有这样的属性。

<Grid x:Name="grdDis" Grid.Row="1">
        <TextBlock Text="Description" TextWrapping="Wrap" HorizontalAlignment="Left" VerticalAlignment="Top" Name="txtDescription" Margin="18,10,0,0" Height="128" Width="445"/>
</Grid>

如何设置 TextBlock 的圆角。并且还想设置TextBlock的背景颜色。

4

3 回答 3

59

使用Border

    <Border Margin="5" Padding="5" BorderThickness="1" BorderBrush="Red" Background="AntiqueWhite" CornerRadius="10">
        <TextBlock Text="Lorem ipsum"/>
    </Border>
于 2013-08-21T05:49:45.207 回答
5

为此,使用 Border 元素作为 textBlock 的父元素,

 <Border BorderThickness="1" BorderBrush="Black" Background="Green" CornerRadius="5">
    <TextBlock Text="Description"/>
</Border>

你已经明白了。:)

于 2013-09-06T12:14:49.370 回答
2

TextBlock 没有这样的属性,但是您可以使用 Rectangle 的RadiusXandRadiusY属性通过将宽度和高度绑定到宽度和高度Rectangle来做到这一点Textblock

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <TextBlock Name="textBlock" Padding="5,0" Text="This is my TextBlock" Height="30" Width="Auto" VerticalAlignment="Top"/>
        <Rectangle RadiusX="5" RadiusY="5" Width="{Binding Width,ElementName=textBlock}" Height="{Binding Height,ElementName=textBlock}" Stroke="White" StrokeThickness="3" VerticalAlignment="Top"/>
</Grid>
于 2013-08-21T05:47:37.580 回答