Datagridview loads data but displays blank

Asked

Viewed 82 times

0

I have a Datagridview, it loads the data but does not display them.

 private void AtualizarGrid()
    {

        AlunoDAL alunoDAL = new AlunoDAL();

        var bindingList = alunoDAL.CarregarAlunos();
        AlunosColecao alunosColecao = new AlunosColecao();
        var source = new BindingSource(bindingList, null);

        dataGridViewAluno.DataSource = bindingList;
        dataGridViewAluno.DataSource = source;

        //Atualiza o Grid.
        dataGridViewAluno.Update();
        dataGridViewAluno.Refresh();
    }

inserir a descrição da imagem aqui

1 answer

0

Add a databind below the grid.Datasource.

protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            var listaProdutos = new Produtos().ConsultarProdutos();
            if (listaProdutos != null && listaProdutos.Count > 0)
            {
                this.grdDados.DataSource = listaProdutos;
                this.grdDados.DataBind();
            }
        }
    }
  • 1

    The application is Windows Forms!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.