I am trying to control two DataGridView\'s with only one of the DataGridView vertical scroll bars being visible.
In Form.Load():
Grid1.Scroll += (s, ev) => Grid2.VerticalScrollBar.Value = Grid1.VerticalScrollBar.Value;
Edit: We can't assign Grid2.VerticalScrollingOffset as I had originally suggested, as it's a ReadOnly property.