public CommandEditForm(String c, QueueForm qf) { command = c; originalCommand = c; queueForm = qf; InitializeComponent(); }
private void btn_viewQueue_Click(object sender, EventArgs e) { QueueForm queueForm = new QueueForm(ref buildQueue); queueForm.FormClosed += QueueFormClosed; queueForm.Show(); }