private void agregarGrupoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormPatron dlg = new FormPatron("");

            dlg.ShowDialog();
            CargaPatrones();
        }
        private void Grupos_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            //editar
            if (Grupos.SelectedIndices.Count == 0)
            {
                return;
            }
            FormPatron dlg = new FormPatron(Grupos.SelectedItems[0].Text);

            dlg.ShowDialog();
            CargaPatrones();
        }