C#/Winform

(.NET) 더블 버퍼 줄이기

kjun.kr 2017. 4. 15. 14:42
728x90

아래처럼 시스템 진입부에 넣으면 깜빡임현상을 줄일수 있다.

 

            SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            SetStyle(ControlStyles.UserPaint, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
728x90