I agree with scottm, but adding something that makes a difference:
private void ScorePanel_Scroll(object sender, ScrollEventArgs e)
{
var senderPanel = sender as Panel;
if (senderPanel == null)
{
// Might want to print to debug or mbox something, because this shouldn't happen.
return;
}
var otherPanel = senderPanel == Panel1 ? Panel2 : Panel1;
otherPanel.VerticalScroll.Value = senderPanel.VerticalScroll.Value;
}
The other way, you would always update Panel1 to the scroll offset of Panel2, so if you scrolled Panel2, it would actually not scroll anything.
Now that you have this method, you should subscribe with both panels to it, like so:
Panel1.Scroll += ScorePanel_Scroll;
Panel2.Scroll += ScorePanel_Scroll;
This would probably be best done in the ctor of the form which contains the panels.