private void drawImage(Graphics g, int x, int y)
        {
            g.SetClip(ScrollingImageRectangle);
            Rectangle drawRect = new Rectangle(new Point(x, y), ScrollingImageRectangle.Size);
            g.DrawImage(this.scrollingImage, ScrollingImageRectangle, drawRect, GraphicsUnit.Pixel);
        }我在每次点击了滚动条后就去执行上面的函数..
但是这样它会闪动..