public CommandEditForm(String c, QueueForm qf)
 {
     command         = c;
     originalCommand = c;
     queueForm       = qf;
     InitializeComponent();
 }
Example #2
0
        private void btn_viewQueue_Click(object sender, EventArgs e)
        {
            QueueForm queueForm = new QueueForm(ref buildQueue);

            queueForm.FormClosed += QueueFormClosed;
            queueForm.Show();
        }