Hello all,
I am using DataGridView in my user control and its CellPainting event in C#. I have some merged cells in my control.
When I drag & drop my control in other application, the LAST ROW of the DataGridView is not getting painted. Rest of the rows and columns in those rows are getting painted properly.
Actually problem here is DataGridView is not raising CellPainting event for that last row. The rest of the things like DataSet & DataTable are there getting updated correctly, but last row is not getting painted.
Even when i debugged the app, the break point did not hit for
e.RowIndex == 16.
Can anyone please help me with this....
Thanks in advance
Abhishek
I am using DataGridView in my user control and its CellPainting event in C#. I have some merged cells in my control.
When I drag & drop my control in other application, the LAST ROW of the DataGridView is not getting painted. Rest of the rows and columns in those rows are getting painted properly.
Actually problem here is DataGridView is not raising CellPainting event for that last row. The rest of the things like DataSet & DataTable are there getting updated correctly, but last row is not getting painted.
Even when i debugged the app, the break point did not hit for
e.RowIndex == 16.
Can anyone please help me with this....
Thanks in advance
Abhishek
Comment