Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 오류
- C
- JSON
- 핑거스타일
- LIST
- windows forms
- Docker
- label
- Python
- OpenCV
- 명령어
- 기타 연주
- SSH
- VS Code
- pip
- YOLO
- pytorch
- 프로그래머스
- error
- mysql
- C#
- paramiko
- Selenium
- C++
- Numpy
- ubuntu
- pandas
- Visual Studio
- Linux
- 채보
Archives
- Today
- Total
목록Message Box (1)
기계는 거짓말하지 않는다
C# Windows Forms MessageBox
사용자에게 메시지 박스로 알림을 띄울 수 있다. 또한 종류도 다양하다. System.Windows.Forms.MessageBox 클래스를 이용한다. // MessageBox Show 함수의 DialogResult 반환 DialogResult dr; // 확인 버튼만 있음, 아이콘 없음 MessageBox.Show("메시지", "캡션"); // 확인 버튼에 Information 아이콘 MessageBox.Show("메시지", "캡션", MessageBoxButtons.OK, MessageBoxIcon.Information); // 예, 아니오 버튼에 Question 아이콘. DialogResult 반환 값 대입 dr = MessageBox.Show("메시지 Yes Or No", "캡션", MessageBo..
C#
2021. 7. 11. 13:38