码迷,mamicode.com
首页 > Windows程序 > 详细

wpf中的倒影效果实现

时间:2018-10-22 23:19:16      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:sdn   nim   bind   ase   csdn   poi   blog   point   div   

原文:wpf中的倒影效果实现

? ? ??技术分享图片

<TextBox Name="txt"

? ? ? ? ? ? ? ? ? ? ?FontSize="30"
? ? ? ? ? ? ? ? ? ? ?AcceptsReturn="True"
? ? ? ? ? ? ? ? ? ? ?AcceptsTab="True">abcdefghigklmnopqrstuvwxyz</TextBox>
? ? ? ? ? ? <Rectangle RenderTransformOrigin="1,0.5" Height="40">
? ? ? ? ? ? ? ? <Rectangle.Fill>
? ? ? ? ? ? ? ? ? ? <!--得到元素的外观-->
? ? ? ? ? ? ? ? ? ? <VisualBrush Visual="{Binding ElementName=txt}" />
? ? ? ? ? ? ? ? </Rectangle.Fill>
? ? ? ? ? ? ? ? <Rectangle.RenderTransform>
? ? ? ? ? ? ? ? ? ? <!--反转效果-->
? ? ? ? ? ? ? ? ? ? <ScaleTransform ScaleY="-1" />
? ? ? ? ? ? ? ? </Rectangle.RenderTransform>
? ? ? ? ? ? ? ? <Rectangle.OpacityMask>
? ? ? ? ? ? ? ? ? ? <!--反射的透明效果-->
? ? ? ? ? ? ? ? ? ? <LinearGradientBrush StartPoint="0,0"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?EndPoint="0,1">
? ? ? ? ? ? ? ? ? ? ? ? <GradientStop Offset="0.3"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Color="Transparent" />
? ? ? ? ? ? ? ? ? ? ? ? <GradientStop Offset="1"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Color="#44000000" />
? ? ? ? ? ? ? ? ? ? </LinearGradientBrush>
? ? ? ? ? ? ? ? </Rectangle.OpacityMask>
? ? ? ? ? ? </Rectangle>

wpf中的倒影效果实现

标签:sdn   nim   bind   ase   csdn   poi   blog   point   div   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9833704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!