Im using model view presenter pattern in my winforms app. I have to bind some data to the gridView. I want to get the data in the separate thread. This is what I do:
In presenter I call: BackgroundWorker_GetDataSourceFromFile. In this method I create datasource and call View.SetDataSet.
In the view SetDataSet:
DsGridView.DataSource = value;
DsGridView.Refresh();
It is ok except scrollbars. They appear but doesnt work :/
Has anyone of you had such a problem?
Thanks in advance