嗨,我有这个
TextBlock
,在它周围有一个米色的圆形边框。但问题是我看到圆形边框内有一个小边框,我希望圆角矩形看起来是实心的并且是单一颜色的,但事实并非如此。
TextBlock
本身似乎没有要设置的BorderThickness,对于ScrollViewer我可以将BorderThickness设置为0但没有效果。我不知道这个小边框是从哪里来的。
<StackPanel>
<Border CornerRadius="10" BorderThickness="10" BorderBrush="Beige" Background="Beige">
<ScrollViewer
HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto">
<TextBlock
Padding="20"
TextWrapping="Wrap"
Text="this is a text"
FontFamily="Segoe Print"
FontSize="24" />
</ScrollViewer>
</Border>
</StackPanel>
从
Border
删除边框
<StackPanel>
<Border CornerRadius="10"
BorderThickness="0"
Background="Beige">