Search Results

1
vote

Setting DataGridViewRow.Height slow

If you can, try setting the height before you bind the control. If you can't do that, try making the control hidden before setting the height. …
1
vote

Algorithm for hit test in non-overlapping rectangles

Create an Interval Tree. Query the Interval Tree. Consult 'Algorithms' from MIT press. An Interval Tree is best implemented as a Red-Black Tree. Keep in mind that it is only advis …