控制滚动条位置这样做:
Dim pnl As WinForm.Panel = e.Form.Controls("Panel1")Dim p As Point = pnl.ScrollPositionp.x = 1000p.y = 1000
pnl.ScrollPosition = p