Recipe 18-1. Syncing Scrolling Between Two Grids
Problem
You will occasionally n
eed or want to have two scrolling windows synced. You might want to have this ability when you are comparing two files, such as a diff. Or perhaps you just want to compare two sets of data or perhaps even two photos. In this recipe, we will put two grids in a SplitterWindow and sync them
up. Note that I will only be demonstrating syncing the scrolling when you scroll using the scrollbar itself.
Solution
Figure 18-1
Syncing ...