首先我们打开VS2013,依次【文件】=》【新建】=》【项目】
然后我们亩团选择C# 【windows窗体应用程序】,输入项目名称和解决方案名称就行了,名字随意吧。默认是WindowsFormsApplication4,说明以前已经建立过三个项目了,这个不是重点。
接下来我们看看生成的项目文件和结构,迅盯橘左则返边是一个windows窗体,右边是windows项目的文体
看来你是个新手,在.NET中启动窗体设置有两种方法:一是在代码中指定。如上楼中提的,可以在代码蔽迹写上你要启动的窗体。一是在工程属性中设置,点击菜单中的项目,选择创新项目的属性(在项目菜单的最后一项),在d出的对话框中选择【应用程序】(第一项),源猜在这一项中有启动窗体的设置,你选择上你要启动的窗体名称雹并型即可。用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
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)