duongame
Android developer
Sunday, April 19, 2015
C# 쓰레드 생성시 폼이 종료되지 않는 문제
만약에 C# Form에서 쓰레드를 생성한 후, Form Close가 되었는데 프로그램이 종료되지 않는다면, 다음과 같이 IsBackgound를 true로 설정하면 된다.
Thread t = new Thread(myAction);
t.IsBackground = true;
t.Start();
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment