首页 > Windows开发 > 详细

C#窗体显示

时间:2014-04-02 09:29:54      阅读:498      评论:0      收藏:0      [点我收藏+]

public partial class Login : Form
{
Timer T;
public Login()
{
InitializeComponent();
T = new Timer();
T.Interval =1;
T.Tick += new EventHandler(timer1_Tick);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
}

void timer1_Tick(object sender, EventArgs e)
{
if (this.Size.Width < 1024 || this.Size.Height < 768)
{
this.Size = new Size(this.Size.Width + 100, this.Height + 80);
this.CenterToScreen();
}
}

private void Login_Load(object sender, EventArgs e)
{
T.Start();
}


}

C#窗体显示,布布扣,bubuko.com

C#窗体显示

原文:http://www.cnblogs.com/FLWL/p/3638425.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!