private void b2_Click(object sender, EventArgs e)
 {
     this.Hide();
     if (mostrarSector == null)
     {
         mostrarSector = new InmuebleSectorMostrarSector(this);
     }
     mostrarSector.abrir();
 }
 public InmuebleSectorMostrarSectorModificarSector(InmuebleSectorMostrarSector mostrarSector)
 {
     this.mostrarSector = mostrarSector;
     InitializeComponent();
     ListarSector();
     b3.Enabled = false;
     t1.Enabled = false;
     t2.Enabled = false;
 }