wpf textblock中文字加白色边框怎么实现?请大家赐教!谢谢啦!
可以用一个Border包装TextBlock
是给字加边框
@happy萍儿:
<TextBlock>
<TextBlock.Inlines>
<InlineUIContainer>
<Border BorderBrush="Green" BorderThickness="2">
<TextBlock Text="中国"></TextBlock>
</Border>
</InlineUIContainer>
</TextBlock.Inlines>
</TextBlock>
@jello chen: 是要这种效果
@jello chen: 是不是没办法实现这一效果啊?