반응형

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()













반응형
Posted by 자유프로그램
,