WPF中绘画和动画(4)

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 09:33 点击:

接下来我们看一个VisualBrush的例子。为了简单起见,目标控件是一个Button,实际工作中换成复杂控件的效果也一样。程序的XAML代码如下:

<Window x:Class="WpfApplication1.Window2"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        Title="VisualBrush" Height="300" Width="400"Background="Orange">

    <Grid Margin="10">

        <Grid.ColumnDefinitions>

            <ColumnDefinition Width="160"/>

            <ColumnDefinition Width="*"/>

            <ColumnDefinition Width="160"/>

        </Grid.ColumnDefinitions>      

        <StackPanel x:Name="stackPanelLeft" Background="White">

            <Button x:Name="realButton" Content="OK" Height="40"/>

        </StackPanel>      

        <Button Content=">>>" Grid.Column="1" Margin="5,0" Click="Button_Click" />      

        <StackPanel x:Name="stackPanelRight" Background="White" Grid.Column="2"/>

    </Grid>

</Window>

中间Button的Click事件处理器代码如下:

doubleo=1.0; //不透明度计数器

 

        privatevoidButton_Click(objectsender, RoutedEventArgse)

        {

            VisualBrushvBrush=newVisualBrush(this.realButton);

            Rectanglerect=newRectangle();

            rect.Width=realButton.ActualWidth;

            rect.Height=realButton.ActualHeight;

            rect.Fill=vBrush;

            rect.Opacity=o;

            o-=0.2;

 

            this.stackPanelRight.Children.Add(rect);

        }

 

摘自 wangganggang90的专栏

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • 浅析.NET下XML数据访问新机制
    • asp.net 面试+笔试题目第1/2页
    • C# 邮件地址是否合法的验证
    • C#高级编程:数据库连接[1]
    • asp.net 设置GridView的选中行的实现代码
    • 经典C++程序1
    • IIS 自动回收导致后台定时器失效的问题解决
    • ASP.NET&#160;GridView列表代码示例
    • 微软ASP.NET站点部署指南(3):使用Web.Config文件的Transforma
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1