private void btnMatch_Click(object sender, EventArgs e)
        {
            EditMatchForm form = new EditMatchForm(this.dgCommand);

            form.StartPosition = FormStartPosition.CenterParent;
            form.ShowDialog();
        }
 private void btnMatch_Click(object sender, EventArgs e)
 {
     EditMatchForm form = new EditMatchForm(this.dgCommand);
     form.StartPosition = FormStartPosition.CenterParent;
     form.ShowDialog();
 }