I have a DataGridView
with the DataSource
set to List<myClass>
However, the new row indicator does not display when I set AllowUserToAddRows
to true
,
When I set the DataSource
to BindingList<myClass>
, that seems to solve the problem.
Q: Should replace my List<>
with BindingList<>
or there is better solution?