1. SetStyle
1
2
3
4
5
6
7
8
|
public Form1()
{
InitializeComponent();
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true);
this.UpdateStyles();
}
|
cs |
1번 방법이 안될때.
2. CreateParam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public Form1()
{
InitializeComponent();
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true);
this.UpdateStyles();
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000; // Turn on WS_EX_COMPOSITED
return cp;
}
}
|
cs |
'c#' 카테고리의 다른 글
[C#, Matlab] Matlab에서 생성한 Dll 이 System.TypeInitializationException' 오류가 날때 (0) | 2020.12.05 |
---|---|
[c#, customForm] winform customizing 1 (0) | 2020.11.12 |
[c#, devexpress] 다른 thread에서 xtraMessagebox 또는 xtraForm에 스킨 적용이 안될때 (0) | 2020.10.22 |
[c#] form 초기 위치 control에 맞추기 (0) | 2020.07.29 |
visualstudio 첫 셋팅 저장 (0) | 2020.05.20 |