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();
 }