728x90
MessageBox.Show("테스트"); //위로 안나올때가 있음
MessageBox.Show(new Form { TopMost = true }, "테스트"); //항상 최상위로 나옴
가끔 messagebox.show 를 해도 안보일때가 있다.
messagebox.show 는 코드를 브로킹 하기때문에 확인을 하지 않으면 프로그램에 문제가 발생 할 수있다.
그래서 무조건 맨위로 올라와서 확이 가능하게 수정 했다.
출처: https://believecom.tistory.com/311
728x90
'C#' 카테고리의 다른 글
C# / 간단하게 딕셔너리 같은지 비교 하기, c# equality between dictionaries, dictionary compare (0) | 2021.06.11 |
---|---|
C# / string.IsNullOrEmpty 와 string.IsNullOrWhiteSpace 비교, 널체크, Null 체크 (0) | 2021.06.11 |
C# / string to datetime 변경 / 날짜, 시간 비교 / 날짜, 시간 포맷, 양식 정하기 (0) | 2021.05.26 |
C# / system.outofmemoryexception (0) | 2021.05.25 |
C# / Text to Speech(TTS) 사용, 음성 출력 하기 (0) | 2021.05.18 |