Esempio n. 1
0
 private void BT_Editar_Click(object sender, EventArgs e)
 {
     if (plantillaSeleccionada().tieneCondicionesTipo1())
     {
         crearPlantilla_ext = new Form1_ext(this, true);
         crearPlantilla_ext.ShowDialog();
     }
     else
     {
         crearPlantilla = new Form1_prioridades(this, true);
         crearPlantilla.ShowDialog();
     }
 }
Esempio n. 2
0
 private void BT_NuevaConCondiciones_Click(object sender, EventArgs e)
 {
     crearPlantilla_ext = new Form1_ext(this, false);
     crearPlantilla_ext.ShowDialog();
 }