本帖最后由 qiuqingpo 于 2013-05-03 14:04:22 编辑

解决方案 »

  1.   

    怎么个自绘,估计你得在滚轮事件中,根据滚动方向,重新设置一些数据,然后invalidate触发重绘
      

  2.   

    protected override void OnMouseWheel(MouseEventArgs e)
            {
                if (e.Delta > 0)
                {
                    this.chatVScroll.Value -= 50;
                }
                if (e.Delta < 0)
                {
                    this.chatVScroll.Value += 50;
                }
                base.OnMouseWheel(e);
            }