private void backButton_Click(object sender, EventArgs e) { Form f = this.FindForm(); f.Controls.Remove(this); ClockScreen cs = new ClockScreen(); f.Controls.Add(cs); }
private void clockBox_Click(object sender, EventArgs e) { Form f = this.FindForm(); f.Controls.Remove(this); ClockScreen hs = new ClockScreen(); f.Controls.Add(hs); }