资源简介
Winform窗体动画载入和退出
动画的载入窗体效果,在退出时也附带动画效果。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
//该源码下载自C#编程网|www.cpbcw.com
namespace FalshWindows
{
public partial class Form1 : Form
{
public const Int32 AW_HOR_POSITIVE = 0x00000001;
public const Int32 AW_HOR_NEGATIVE = 0x00000002;
public const Int32 AW_VER_POSITIVE = 0x00000004;
public const Int32 AW_VER_NEGATIVE = 0x00000008;
public const Int32 AW_CENTER = 0x00000010;
public const Int32 AW_HIDE = 0x00010000;
public const Int32 AW_ACTIVATE = 0x00020000;
public const Int32 AW_SLIDE = 0x00040000;
public const Int32 AW_BLEND = 0x00080000;
public Form1()
{
InitializeComponent();
AnimateWindow(this.Handle 300 AW_SLIDE + AW_VER_NEGATIVE);
}
private void pictureBox1_Click(object sender EventArgs e)
{
}
private void Form1_Load(object sender EventArgs e)
{
}
[DllImportAttribute(“user32.dll“)]
private static extern bool AnimateWindow(IntPtr hwnd int dwTime int dwFlags);
private void Form1_FormClosed(object sender FormClosedEventArgs e)
{
AnimateWindow(this.Handle 300 AW_SLIDE + AW_VER_NEGATIVE + AW_HIDE);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 207360 2012-01-26 13:47 FalshWindows\bin\Debug\FalshWindows.exe
文件 19968 2012-01-26 13:47 FalshWindows\bin\Debug\FalshWindows.pdb
文件 14328 2012-01-26 13:47 FalshWindows\bin\Debug\FalshWindows.vshost.exe
文件 490 2009-06-11 05:14 FalshWindows\bin\Debug\FalshWindows.vshost.exe.manifest
文件 3878 2009-02-23 10:54 FalshWindows\FalshWindows.csproj
文件 1502 2012-01-26 13:47 FalshWindows\Form1.cs
文件 2541 2009-02-23 10:53 FalshWindows\Form1.designer.cs
文件 5814 2009-02-23 10:53 FalshWindows\Form1.resx
文件 879 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.csproj.FileListAbsolute.txt
文件 882 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.csproj.GenerateResource.Cache
文件 207360 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.exe
文件 180 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.Form1.resources
文件 19968 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.pdb
文件 198387 2012-01-26 13:47 FalshWindows\obj\Debug\FalshWindows.Properties.Resources.resources
文件 493 2009-02-23 10:53 FalshWindows\Program.cs
文件 1356 2009-02-23 10:53 FalshWindows\Properties\AssemblyInfo.cs
文件 3091 2009-02-23 10:54 FalshWindows\Properties\Resources.Designer.cs
文件 6190 2009-02-23 10:54 FalshWindows\Properties\Resources.resx
文件 1096 2009-02-23 10:53 FalshWindows\Properties\Settings.Designer.cs
文件 249 2009-02-23 10:53 FalshWindows\Properties\Settings.settings
文件 197920 2009-02-23 10:53 FalshWindows\Resources\4.jpg
文件 926 2009-02-23 10:53 FalshWindows.sln
..A..H. 15360 2012-01-26 13:47 FalshWindows.suo
目录 0 2012-01-26 13:47 FalshWindows\obj\Debug\TempPE
目录 0 2012-01-26 13:47 FalshWindows\bin\Debug
目录 0 2012-01-26 13:47 FalshWindows\obj\Debug
目录 0 2012-01-26 13:47 FalshWindows\bin
目录 0 2012-01-26 13:47 FalshWindows\obj
目录 0 2011-12-23 08:09 FalshWindows\Properties
目录 0 2011-12-23 08:09 FalshWindows\Resources
............此处省略5个文件信息
相关资源
- C# Winform 发票信息修改 文本内容修改
- C# Winform 左侧菜单右边显示、子窗体显
- C#WinForm版 《仿360杀毒页面切换动画效
- C# winform/web导出EXCEL
- WInform LED 时钟显示源码及Dll C#控件
- c#winform开发仓库管理系统,vs2010,m
- C#版winform中使用的ToggleButton
- winform用tabcontrol切换mdi子窗口及为ta
- C#中使用ACCESS数据库进行查询WinForm程
- ComponentOne 2014 V1 WinForms 注册机
- C#WinForm的ComboBox控件自定义实现自动模
- 新浪新闻RSS阅读器C#版
- 基于winform的SVG编辑器
- Winform版 简单的打字游戏c#
-
微软DSOfr
amer winform中嵌入officeexcel, - C#中英文切换,实现菜单,工具栏,按
- c# winform 多线程测试(初学)
- 左侧菜单切换右侧选项卡.rar
- WinForm基础教程
- Winform(三层架构)商城系统_学生作业
- winform串口通过SCPI协议与数控电源M8
- 迷宫自动生成.zip
- WinForm音乐播放器源码
- C# 简单反射实现winform左侧树形导航,
- C#WinForm基于BS构架实现CS及源代码
- WinFormsApp.rar
- c#红绿灯程序源代码
- c# winform 串口收发数据 demo
- 利用C#语言实现MSChart控件中图形拖拽
- WinForm窗体及其控件的自适应
评论
共有 条评论