C# 画面中PictureBox 画面闪烁

            this.SetStyle(
ControlStyles.UserPaint |
ControlStyles.AllPaintingInWmPaint |
ControlStyles.OptimizedDoubleBuffer |
ControlStyles.ResizeRedraw, true);
            this.SetStyle(ControlStyles.Opaque, false);
            this.UpdateStyles();

使用双缓冲模式即可。


把以上代码加在 PictureBox 所在的类的构造函数中。






----------------------------------------------------------


你可能感兴趣的:(C# 画面中PictureBox 画面闪烁)