I have an application that uses docking. Each pane contain a virtual grid.
If the user toggles between panes, any future font size changes are not reflected by the virtual grid
I have attached a demo project that shows the problem.
After launching the application:
1) click the Increase/Decrease Font buttons to see the font size change.
2) click tab2 then go back to tab1
3) click the Increase/Decrease Font buttons to see the Virtual Grids font size no longer updates.
(I have a third virtual grid outside of the Docking that shows that the font does change if not used inside of a docking control)
VirtualGridCellClipboardEventArgs.Cell.ColumnIndex is off by 1 if you pin a column to the left.
Same with VirtualGridCellClipboardEventArgs.Cell.RowIndex if you pin a column to the top.
Thanks,