■ Form 클래스에서 더블 버퍼링을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
using System.Windows.Forms; /// <summary> /// 테스트 폼 /// </summary> public partial class TestForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - TestForm() /// <summary> /// 생성자 /// </summary> public TestForm() { InitializeComponent(); SetStyle(ControlStyles.DoubleBuffer , true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); SetStyle(ControlStyles.UserPaint , true); // 또는 SetStyle(ControlStyles.DoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint, true); } #endregion } |