go on uping !
顶!

解决方案 »

  1.   

    ms-help://MS.MSDNQTR.2003FEB.2052/cpref/html/frlrfSystemWindowsFormsControlClassSetStyleTopic.htm 下面的示例启用 Form 上的双重缓冲并更新样式以反映所做的修改。public void EnableDoubleBuffering()
    {
       // Set the value of the double-buffering style bits to true.
       this.SetStyle(ControlStyles.DoubleBuffer | 
          ControlStyles.UserPaint | 
          ControlStyles.AllPaintingInWmPaint,
          true);
       this.UpdateStyles();
    }