Inheritance: System.Windows.Forms.Form
示例#1
0
文件: Form2.cs 项目: santileira/BHLP
 private void botonSelServicios_Click(object sender, EventArgs e)
 {
     Form formularioServicios = new Servicios(this, null,listaServicios);
     formularioServicios.ShowDialog();
 }
示例#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();
 }