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
- pythonanywhere
- advColumnGrid
- pyhcarm
- Push
- blog
- 델파이
- python3
- MSSQL
- 중복제거
- c#
- queryset
- hackerrank
- templates
- delphi 10.3
- get_object_or_404
- Visual Studio
- github
- COMMIT
- rank
- Delphi
- HTML
- TMS
- 백준
- PyCharm
- dbadvgrid
- Django
- GIT
- declare
- anaconda3
- python 3.7
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