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 |
Tags
- HTML
- anaconda3
- declare
- templates
- pythonanywhere
- TMS
- 델파이
- advColumnGrid
- PyCharm
- get_object_or_404
- 중복제거
- Delphi
- queryset
- python 3.7
- blog
- pyhcarm
- GIT
- MSSQL
- COMMIT
- dbadvgrid
- delphi 10.3
- hackerrank
- c#
- Push
- github
- 백준
- Visual Studio
- Django
- python3
- rank
Archives
- Today
- Total
목록드래그로 폼 이동 (1)
DevHyun
클릭 후 드래그로 이동시키기
private Point point = new Point(); // mousedown 이벤트 private void panel2_MouseDown(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 point = new Point(e.X, e.Y); } // mousemove 이벤트 // mouseup 이벤트에서 사용시 버벅거림 현상이 생김 private void panel2_MouseMove(object sender, MouseEventArgs e) { // 클릭후 드래그로 폼 이동시 사용 if ((e.Button & MouseButtons.Left) == MouseButtons.Left) { this.Location = new Point(this.Lef..
C#
2023. 11. 9. 10:50