0
gridItens.DefaultCellStyle.Font = new Font("Tahoma", 12); gridItens.Autogeneratecolumns = false;
txtEAN.Focus();
ITENS = new BindingList<ItemVendaView>();
gridItens.DataSource = ITENS;
AtualizaTotais();
0
0
gridItens.DefaultCellStyle.Font = new Font("Tahoma", 12); gridItens.Autogeneratecolumns = false;
txtEAN.Focus();
ITENS = new BindingList<ItemVendaView>();
gridItens.DataSource = ITENS;
AtualizaTotais();
Browser other questions tagged c# winforms
You are not signed in. Login or sign up in order to post.
include your code
– Leandro Angelo
It would be good for you to add the code you use to "feed" the grid. In Windows Forms, editing data from a grid will always depend on the source.
– Jéf Bueno