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
- pip
- pytorch
- mysql
- 명령어
- windows forms
- JSON
- Python
- VS Code
- C
- Visual Studio
- LIST
- Linux
- Selenium
- error
- OpenCV
- Docker
- Numpy
- pandas
- ubuntu
- 프로그래머스
- 채보
- C++
- YOLO
- 기타 연주
- 핑거스타일
- label
- paramiko
- 오류
- SSH
- C#
Archives
- Today
- Total
목록이벤트 등록 (1)
기계는 거짓말하지 않는다
C# Windows Forms 이벤트 등록
C# Windows Forms에 버튼, 텍스트 박스 등 여러 컨트롤에 이벤트를 등록할 수 있다. 하나 또는 그 이상의 이벤트 등록이 가능하다. Event 정의 private void button1_Click(object sender, EventArgs e) { MessageBox.Show("Event Method Name: button1_Click"); } private void Message1(object sender, EventArgs e) { MessageBox.Show("Event Method Name: Message1"); } private void Message2(object sender, EventArgs e) { MessageBox.Show("Event Method Name: Message..
C#
2021. 7. 16. 23:11