Under certain conditions the DataGrid isn't displaying Rows that are present. Setps to reproduce:
- Drop a TMSFNCDataGrid onto a Form
- In the Constructor fill the Grid with data
this->DataGrid->RowCount = 30;
for(int nZeile{0}; nZeile < this->DataGrid->RowCount; ++nZeile)
this->DataGrid->Strings[0][nZeile] = L"Zeile " + IntToStr(nZeile);
- Start the Application and Resize the form that a Scrollbar is visible
- Scroll down to the last row
- Now resize the form so that the ScrollBar isn't needed anymore
- Now the grid seems to be broken (no ScrollBar, and all rows above "10" aren't visible even scrolling with the mousewheel doesn't bring the rows back)