Hi everyone,
I've DataGridView
that bound to List<myClass>
as DataSource
.
But when i set "AllowUserToAddRows
" property to "True" there is nothing appear.
I tried to change the DataSource
to BindingList<myClass>
and it's going well.
I wonder if i should replace my List<>
with BindingList<>
or there is better solution ??.
Thank you very much.