您好我有2个问题。
代码:
-X
有效的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ClashRoyaleHack
{
public partial class GoldCMD : Form
{
public GoldCMD()
{
InitializeComponent();
timer2.Interval = 10000;
timer2.Tick += new EventHandler(timer2_Tick);
timer2.Start();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void timer2_Tick(object sender, EventArgs e)
{
this.Close();
}
}
}

答案 0 :(得分:-1)
可以想象,计时器可以"勾选"一旦启动并考虑您的代码在勾选后立即关闭它,它可能是您的问题的根源。否则,如果这不是推理,那么无论何时,你仍然会在第一次打勾时将其杀死。