111,126
社区成员
发帖
与我相关
我的任务
分享using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace testclass
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
}
public void ShowNew()
{
this.Show();
System.Threading.Thread.Sleep(5000);
this.Dispose();
}
}
}
int i = 0;
private void timer1_Tick(object sender, EventArgs e)
{
if (i > 0)
{
Application.Exit();
}
i++;
}