Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
 private void botonSelServicios_Click(object sender, EventArgs e)
 {
     Form formularioServicios = new Servicios(this, null,listaServicios);
     formularioServicios.ShowDialog();
 }
Exemplo n.º 2
0
 private void BT_quitar_sercivio_Click(object sender, EventArgs e)
 {
     Servicios re = new Servicios(DGV_rutas.SelectedRows[0], "Eliminar");
     re.FormClosed += new FormClosedEventHandler(ListadoRutas_Load);
     re.ShowDialog();
 }