private void Form1_Load(object sender, EventArgs e) { inputForm = new inputForm(this); this.btnStart.Enabled = false; this.btnPause.Enabled = false; this.btnStop.Enabled = false; this.btnContinue.Enabled = false; }
private void btnInput_Click(object sender, EventArgs e) { inputForm inputForm = new inputForm(this); inputForm.Show(); }