WPF 字体阴影及渐变字效果示例代码

来源:互联网 发布:mysql多表连接查询 编辑:程序博客网 时间:2024/06/06 00:11
<TextBlock Name="copor" Height="37"  Width="993" FontSize="28" Margin="6,37,0,0" Text="触摸屏系统" HorizontalAlignment="Center" VerticalAlignment="Center" TextTrimming="CharacterEllipsis" FontWeight="ExtraBold" >
                    <TextBlock.Effect>
                        <DropShadowEffect Color="#464646" BlurRadius="2" ShadowDepth="2" Opacity="1" />
                    </TextBlock.Effect>
                <TextBlock.Foreground>
                    <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
                        <LinearGradientBrush.GradientStops>
                            <GradientStop Offset="0.0" Color="#ffffff" />
                            <GradientStop Offset="1.0" Color="#b7b7b7" />
                        </LinearGradientBrush.GradientStops>
                    </LinearGradientBrush>
                </TextBlock.Foreground>
            </TextBlock>
0 0
原创粉丝点击