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
- JavaScript
- AndroidStudio
- 동적쿼리
- egov
- jQuery
- iBATIS
- Spring
- JSTL
- 서드파티모듈
- c:choose
- vscode
- MVC
- NPM
- android
- 콜백
- HTTP
- jsx
- RequestMethod.POST
- react
- MySQL
- mybatis
- 국제화
- 쿼리
- C#크롤링
- Java
- fullcalendar
- node.js
- c:forEach
- SQL
- Callback
Archives
- Today
- Total
목록C#폼이동 (1)
Today Yewon Learned
[C#] Form이동하기
1. 기존폼을 그대로 유지하되, 새로운 폼을 열어야할 때 (기존폼 클릭 가능) private void button1_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); form2.Show(); } 2. 기존폼을 그대로 유지하되, 새로운 폼을 열어야할 때 (기존폼 클릭 불가능 - Modal 형식) private void button1_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); Form2.ShowDialog(); } 3. 기존폼을 종료하고 새로운 폼을 열어야 할 때 private void button1_Click(object sender, EventArgs e) { this.Vi..
카테고리 없음
2022. 11. 24. 10:43