自己写的wpf 弹出框,欢迎拍砖,动画都写在了后台代码,前台代码不太重要,用了一下iconfont,具体样式我就不贴出来了,本次主要是后台代码的动画

需要有父级窗口才可以使用。

前台代码:

<Window x:Class="V2VReporter.Views.SystemViews.MsgPopup"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:V2VReporter.Views.SystemViews"
xmlns:controls="clr-namespace:V2VReporter.Controls"
mc:Ignorable="d"
Title="系统消息" Height="230" Width="300" AllowsTransparency="True" WindowStyle="None" ShowInTaskbar="False">
<Border BorderBrush="{StaticResource SideLevel1}" BorderThickness="1">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<Grid Grid.Row="0" Background="{StaticResource MainGreen}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Orientation="Horizontal">
<TextBlock Text="" Style="{StaticResource IconFont}" VerticalAlignment="Center" FontSize="18" Foreground="AliceBlue" Margin="5,0,0,0"></TextBlock>
<TextBlock Text="系统消息" Foreground="AliceBlue" FontSize="15" VerticalAlignment="Center" Margin="2,0,0,0" ></TextBlock>
</StackPanel>
<StackPanel Grid.Column="1" HorizontalAlignment="Right">
<controls:IconButton Style="{StaticResource TitleCloseBtn}" Margin="0,5,2,0" Click="ButtonBase_OnClick"></controls:IconButton>
</StackPanel>
</Grid>
</Grid>
</Border>
</Window>

后台代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using V2VReporter.Resource; namespace V2VReporter.Views.SystemViews
{
/// <summary>
/// MsgPopup.xaml 的交互逻辑
/// </summary>
public partial class MsgPopup:Window
{
/// <summary>
/// 关闭动画
/// </summary>
private Storyboard sb_close=new Storyboard();
/// <summary>
/// 关闭标识
/// </summary>
private bool close_flg = false;
/// <summary>
/// 关闭动画
/// </summary>
private DoubleAnimation close=new DoubleAnimation();
/// <summary>
/// 窗口弹出
/// </summary>
private Storyboard sb_loaded=new Storyboard();
/// <summary>
/// 窗口弹出动画
/// </summary>
private DoubleAnimation load=new DoubleAnimation();
/// <summary>
/// 窗口加载动画
/// </summary>
private DoubleAnimation loadOp=new DoubleAnimation(); public MsgPopup(Window win)
{
InitializeComponent(); initedCloseStory();
initedLoadStory(win);
sb_loaded.Begin();
} private void initedLoadStory(Window win)
{
this.Owner = win;
this.Left = win.Width - this.Width;
load.From = win.Height;
load.To = win.Height - this.Height;
load.Duration = new Duration(TimeSpan.FromSeconds(1.5));
load.FillBehavior = FillBehavior.HoldEnd;
load.AutoReverse = false;
sb_loaded.Children.Add(load);
Storyboard.SetTarget(load, this);
Storyboard.SetTargetProperty(load, new PropertyPath("Top")); loadOp.From = ;
loadOp.To = ;
loadOp.Duration=new Duration(TimeSpan.FromSeconds(1.5));
loadOp.FillBehavior = FillBehavior.HoldEnd;
loadOp.AutoReverse = false;
sb_loaded.Children.Add(loadOp);
Storyboard.SetTarget(loadOp, this);
Storyboard.SetTargetProperty(loadOp, new PropertyPath("Opacity")); } private void initedCloseStory()
{
close.From = ;
close.To = ;
close.Duration = new Duration(TimeSpan.FromSeconds());
close.FillBehavior = FillBehavior.HoldEnd;
close.AutoReverse = false;
sb_close.Children.Add(close);
Storyboard.SetTarget(close, this);
Storyboard.SetTargetProperty(close, new PropertyPath("Opacity"));
} protected override void OnClosing(CancelEventArgs e)
{
base.OnClosing(e);
if (!close_flg)
{
sb_close.Completed += delegate
{
close_flg = true;
this.Close();
};
sb_close.Begin();
e.Cancel = true;
}
else
{
e.Cancel = false;
}
} private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
this.Close();
}
}
}

直接用的话会运行不起来,主要看后台动画代码和逻辑

本文属原创 转载请写明出处

wpf 右下角弹出窗的更多相关文章

  1. DuiVision开发教程(18)-弹出窗

    DuiVision的弹出窗体类CDlgPopup,是菜单.下拉列表等控件的父类,也能够单独使用,用于创建弹出窗体.弹出窗体默认是非激活状态下自己主动关闭,比如鼠标点击到弹出窗体外面的区域,弹出窗体就会 ...

  2. Jquery和Javascript 实际项目中写法基础-弹出窗和弹出层 (4)

     一.实际项目中有很多如下界面效果.    二.该效果可以归结为弹出窗或者弹出层来实现的,为什么这么说?看如下代码:      <!DOCTYPE html> <html> & ...

  3. Bootstrap模态弹出窗

    Bootstrap模态弹出窗有三种方式: 1.href触发模态弹出窗元素: <a class="btn btn-primary" data-toggle="moda ...

  4. jquery Mobile弹出窗

    先创建一个窗体 <div data-role="popup" id="popupView" class="ui-content" da ...

  5. 右下角弹出"Windows-延缓写入失败"或者"xxx-损坏文件 请运行Chkdsk工具"

    知识点分析: 任务栏右下角弹出“Windows-延缓写入失败”或者“xxx-损坏文件 请运行Chkdsk工具”. 操作步骤: 方法一:Chkdsk工具 在开始---运行中输入cmd,然后输入chkds ...

  6. iOS:模态弹出窗控制器UIPopoverPresentationController

    模态弹出窗控制器:UIPopoverPresentationController 实质:就是将内容控制器包装成PopoverPresentationController的形式,然后再模态出来,必须指定 ...

  7. iOS:弹出窗控制器:UIPopoverController

    弹出窗控制器:UIPopoverController 截图:   实质:就是将内容控制器包装成popoverController的形式,然后在模态出来,必须给定指向目标(target.frame). ...

  8. C#利用API制作类似QQ一样的右下角弹出窗体

    C#利用API制作类似QQ一样的右下角弹出窗体 (2009-03-21 15:02:49) 转载▼ 标签: 杂谈 分类: .NET using System;using System.Collecti ...

  9. winform C#屏幕右下角弹出消息框并自动消失

    ①弹出信息框后慢慢下降消失 在主窗体中新增按钮重命名为btnShowAndDisappearMessages,在click事件中写如下代码: private void btnShowAndDisapp ...

随机推荐

  1. 安装完CentOS可以不做的事

    添加用户到sudo. 打开/etc/sudoers 找到root ALL=(ALL) ALL这一行,在后面再加上一行就可以了(不用引号): username ALL=(ALL) ALL 注意,都用ta ...

  2. 浅谈python中的“ ==” 与“ is”

    在python中,== 与 is 之间既有区别,又有联系,本文将通过实际代码的演示,力争能够帮助读到这篇文章的朋友以最短的时间理清二者的关系,并深刻理解它们在内存中的实现机制.扯淡的话不多说,下面马上 ...

  3. MQ基础概念和介绍

    一.中间件 MQ是一种中间件产品,至于什么是中间件,中间件能干什么,参见以下链接: http://baike.baidu.com/view/23710.htm 二.WebSphere MQ的原理 We ...

  4. Underscore模版引擎的使用-template方法

    之前项目里有遇到在DOM中增加大量的html结构的时候,傻乎乎的在js中写一堆模版,然后用replace一个一个做替换.当时就是难看了点,不觉得啥,现在了解了模版引擎之后回头来看真的比较捉急了,以后是 ...

  5. Codeforces 710C. Magic Odd Square n阶幻方

    C. Magic Odd Square time limit per test:1 second memory limit per test:256 megabytes input:standard ...

  6. 5. Import the project download from Git

    1.Recover eclipse project Copy .project from other project(You can new a project first in eclipse. T ...

  7. 2018.08.06bzoj1251: 序列终结者(非旋treap)

    传送门 平衡树板子题. 直接fhqtreap打区间标记就行了. 代码: #include<bits/stdc++.h> #define N 50005 using namespace st ...

  8. 被弃用的php函数以及被那个代替

      原文链接 http://blog.csdn.net/a11085013/article/details/8937848   下面列举了部分被弃用的函数:      call_user_method ...

  9. ansible-api 调试

    使用api的时候有时候会遇到一些难以想象到的错误,可以通过以下几种方式来定位. 1.使用 自定义 callback class ResultCallback(CallbackBase): def v2 ...

  10. webuploader在ie7下的flash模式的使用

    webuploader在ie7下不能使用h5模式上传图片,只能使用flash模式. 但是出现了几个问题:(1)必须正确的引入.swf文件,才能使webuploader正常运行             ...