哪位大侠用C#开发过图像处理程序啊?
主要是你是怎么处理屏幕闪烁问题的?
谢谢!

解决方案 »

  1.   

    可以打开 doublebuffer 属性,不过这样要等后台完全描绘完成后才能显示,虽然可以解决闪烁问题,但是速度看起来有点慢。
      

  2.   

    参看
    http://www.codeproject.com/cs/media/flickerFreeDrawing.asp
      

  3.   

    双缓冲,可继承Panel,然后在构造函数中设置双缓冲.
      

  4.   

    设置这三个属性就行了
    this.SetStyle(ControlStyles.DoubleBuffer, true);
    this.SetStyle(ControlStyles.UserPaint, true);
    this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
    是用到双缓存技术
      

  5.   

    this.SetStyle(ControlStyles.DoubleBuffer|ControlStyles.UserPaintControlStyles.AllPaintingInWmPaint, true);
    这样就可以.