如何制作winform得启动画面

如何制作winform得启动画面,第1张

新建一个Winform项目

1

添加PictureBox 和 ProgressBar,并删...

2

点击PictureBox上的小箭头,载入需要放...

3

添加Form1如下代码

4

最终效果图

写本教程的目的是为了能让学习C#的童鞋们能够快速的使用【图形界面】搭建开发环境,希望对您有帮助,如果您觉得好,请点个赞或者也可以收藏。

首先我们打开VS2013,依次【文件】=》【新建】=》【项目】

然后我们选择C# 【windows窗体应用程序】,输入项目名称和解决方案名称就行了,名字随意吧。默认是WindowsFormsApplication4,说明以前已经建立过三个项目了,这个不是重点。

接下来我们看看生成的项目文件和结构,左边是一个windows窗体,右边是windows项目的文体

用API,简单好用

楼上的也学习了吧

using System.Text

using System.Windows.Forms

using System.Drawing.Drawing2D

using System.Drawing.Imaging

using System.Runtime.InteropServices

public partial class Form1 : Form

{

public Form1()

{

this.Visible = false

InitializeComponent()

AnimateWindow(this.Handle, 1000, AW_BLEND)

}

protected override void OnLoad(EventArgs e)

{

base.OnLoad(e)

}

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//渐出

[DllImport("user32.dll", CharSet = CharSet.Auto)]

public static extern bool AnimateWindow(

IntPtr hwnd, // handle to window

int dwTime, // duration of animation

int dwFlags )// animation type

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11626646.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存