반응형
C# -- Invalidate(), Update(), Refresh() 차이점
참고 : https://code-examples.net/en/q/e8a4a
this.Invalidate(); // request a delayed Repaint by the normal MessageLoop system
this.Update(); // forces Repaint of invalidated area
this.Refresh(); // Combines Invalidate() and Update()
반응형
'C#' 카테고리의 다른 글
C# -- 정렬가능한 양방항 binding DataGridView 만들기 (SortableBindingList 와 INotifyPropertyChanged 이용) (0) | 2019.11.28 |
---|---|
C# -- 파일 유무 확인하기 (0) | 2019.11.23 |
C# -- Form 크기 변경시, 다시 그리기 (redraw) (1) | 2019.10.29 |
C# -- MultiThread Singleton (0) | 2019.08.13 |
C# -- 상속받는 멤버 숨기기 ( new 사용) (0) | 2019.07.19 |