'Event'에 해당되는 글 1건

  1. 2013.04.11 Order of Events in Windows Forms

윈폼 어플리케이션이 구동될 때, 메인폼의 startup Event는 다음 순서로 일어난다.

  • ControlHandleCreated
  • ControlBindingContextChanged
  • FormLoad
  • ControlVisibleChanged
  • FormActivated
  • FormShown

어플리케이션이 닫힐 때, 메인폼의 shutdown Event는 다음 순서로 일어난다.

  • FormClosing
  • FormFormClosing
  • FormClosed
  • FormFormClosed
  • FormDeactivate


[MSDN]Order of Events in Windows Forms 참조
Posted by lI헐헐Il
,