예제 #1
0
        private void butListado_Click(object sender, EventArgs e)
        {
            Form listado = new listadoLibros(conexionInterfazPrincipal);

            listado.Visible = true;
            listado.Show();
            this.Visible = false;
        }
예제 #2
0
 public interfazPrincipal()
 {
     InitializeComponent();
     mundo        = new Biblioteca(1000);
     ventAgenda   = new interfazAgendar(this);
     ventAdmin    = new interfazAdmin(this);
     panelListado = new listadoLibros(this);
 }