• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#winform界面从有到无,从无到有

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
 WindowsApplication1 

/// <summary> 
/// Form1 的摘要说明。 
/// </summary> 
public class Form1 : System.Windows.Forms.Form 

/// <summary> 
/// 必需的设计器变量。 
/// </summary> 
private System.ComponentModel.Container components = null

public Form1() 

// 
// Windows 窗体设计器支持所必需的 
// 
InitializeComponent(); 

// 
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码 
// 


/// <summary> 
/// 清理所有正在使用的资源。 
/// </summary> 
protected override void Dispose( bool disposing ) 

if( disposing ) 

if (components != null

components.Dispose(); 


base.Dispose( disposing ); 


#region Windows 窗体设计器生成的代码 
/// <summary> 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改 
/// 此方法的内容。 
/// </summary> 
private void InitializeComponent() 

// 
// Form1 
// 
this.AutoScaleBaseSize = new System.Drawing.Size(614); 
this.ClientSize = new System.Drawing.Size(344302); 
this.Name = "Form1"
this.Text = "Form1"
this.Load += new System.EventHandler(this.Form1_Load); 


#endregion 

/// <summary> 
/// 应用程序的主入口点。 
/// </summary> 
[STAThread] 
static void Main() 

Application.Run(
new Form1()); 


private void Form1_Load(object sender, System.EventArgs e) 

this.Top=Screen.PrimaryScreen.Bounds.Height;//得到高 
this.Left=Screen.PrimaryScreen.WorkingArea.Width-this.Width;//得到X坐标 
Thread th=new Thread(new ThreadStart(ChangeThisPoint));//绑定改变坐标的方法 
th.IsBackground=true;//设置为后台线程 
th.Start();//起启动线程 

public void ChangeThisPoint() 


Thread.Sleep(
500); 
while(this.Bottom>Screen.PrimaryScreen.WorkingArea.Height)//从无到有 

this.Top--
Thread.Sleep(
10); 




Thread.Sleep(
6000); 
while(this.Top <Screen.PrimaryScreen.Bounds.Height)//从有到无 

this.Top++
Thread.Sleep(
10); 

this.Close(); 




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
LinuxCentos7安装Oracle12c第二版本发布时间:2022-07-13
下一篇:
C/C++typedef发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap