public JuegosView() { InitializeComponent(); this.juegoTipo1Control = new JuegoTipo1Control(); this.juegoTipo2Control = new JuegoTipo2Control(); this.Controls.Add(juegoTipo1Control); this.Controls.Add(juegoTipo2Control); this.controlador = new ControladorJuego(); List <TipoJuego> juegos = controlador.GetTodos(); this.lista_juegos.DataSource = juegos; this.lista_juegos.DisplayMember = "nombre"; this.lista_juegos.ValueMember = "Id"; }
private void LoadJuegos() { this.juegos.DataSource = controlador.GetTodos(); this.juegos.DisplayMember = "Nombre"; }