I have a datagrid in .net compact framework C# and I set its datasource to a list, my problem is when the list size increases the grid does nota dd the new additions, I have to recreate the grid by exiting the form and going back into it to see the new entries. The number of visible rows remains the same, so for example if I went from 10 to 20 entries in the list the datagrid still only shows 10 visible rows, if I exit and re-enter the form the same list ends up giving the datagrid all 20 visible rows..
Share
There was no way of actually doing this and I ended up repopulating the database manually every time a cahnge occured then refreshing it to make sure the changes became visible.