Exemplo n.º 1
0
        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";
        }
Exemplo n.º 2
0
 private void LoadJuegos()
 {
     this.juegos.DataSource    = controlador.GetTodos();
     this.juegos.DisplayMember = "Nombre";
 }