WPF阴影效果(DropShadowEffect)

<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>

 

猜你喜欢

转载自www.cnblogs.com/sntetwt/p/9220624.html