728x90

코드를 작성하다보면 메세지박스를 사용해야한다.

보통 아래처럼 사용 했다.

 MessageBox.Show("퇴근 하고싶드아아!!!");

이렇게 사용하면 블로킹이 되어 MessageBox 확인 전까지 다음 코드가 실행 되지 않는다.

Thread t = new Thread(() => MessageBox.Show("퇴근 시켜 달라 달라 달라!"));
t.Start();

이렇게 작성하면 MessageBox 확인을 하지 않아도 다음 코드가 실행되는 논 블로킹으로 사용이 가능하다.

 

출처: https://stackoverflow.com/questions/4245138/non-autoblocking-messageboxes-in-c-sharp

 

Non-autoblocking MessageBoxes in c#

Anyone know a messageBox in .NET that doesn't block the thread that created it untill it's closed ?

stackoverflow.com

 

728x90

+ Recent posts