WPF阴影效果(DropShadowEffect)
时间:2018-06-24 15:51:02
收藏:0
阅读:1125
<TextBlock Text="阴影效果" FontSize="32"> <TextBlock.Effect> <DropShadowEffect Color="Black"></DropShadowEffect> </TextBlock.Effect> </TextBlock> <TextBlock Text="阴影效果" FontSize="32" Canvas.Top="50"> <TextBlock.Effect> <DropShadowEffect Color="Black" BlurRadius="10"></DropShadowEffect> </TextBlock.Effect> </TextBlock>
原文:https://www.cnblogs.com/sntetwt/p/9220624.html
评论(0)