아래와 같이 메인 초기화 함수에 FormClosing에 핸들러를 더해주면, 폼이 꺼질때 아래의 함수가 작동된다.
종료나 저장같은 이벤트를 넣어야할때 사용하면 될듯!
public FormName()
{
FormClosing += new FormClosingEventHandler(closing);
}
private void closing(object sender, FormClosingEventArgs e)
{
// TODO LIST
}
'Programming > C# & Unity' 카테고리의 다른 글
C# ?. ?? 연산자 (0) | 2019.10.31 |
---|---|
Visual studio 2017 유니티 디버거 system.reactive.linq.observable 오류 (0) | 2018.07.03 |
Unity UI에 Onclick 넣기 (0) | 2018.03.26 |
유니티 RectTransform (0) | 2018.03.24 |
C# 쓰레드 Lock (0) | 2018.03.24 |