private void button1_Click(object sender, EventArgs e) { DonutUI DonutForm = new DonutUI(); DonutForm.Tag = this; DonutForm.Show(this); Hide(); }
private void Btn_Cancel_Click(object sender, EventArgs e) { DonutUI newdonut = new DonutUI(); newdonut.Tag = this; newdonut.Show(this); Hide(); }