Ejemplo n.º 1
0
        private void agregarGrupoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormPatron dlg = new FormPatron("");

            dlg.ShowDialog();
            CargaPatrones();
        }
Ejemplo n.º 2
0
        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();
        }