■ Form 클래스에서 마우스로 폼을 이동시키는 방법을 보여준다.
▶ 예제 코드 (C#)
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
using System.Drawing; using System.Windows.Forms; /// <summary> /// 테스트 폼 /// </summary> public partial class TestForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 드래그 여부 /// </summary> private bool isDragging; /// <summary> /// 시작 위치 /// </summary> private Point startPoint; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - TestForm() /// <summary> /// 생성자 /// </summary> public TestForm() { InitializeComponent(); MouseDown += Form_MouseDown; MouseMove += Form_MouseMove; MouseUp += Form_MouseUp; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 폼 마우스 다운시 처리하기 - Form_MouseDown(sender, e) /// <summary> /// 폼 마우스 다운시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_MouseDown(object sender, MouseEventArgs e) { this.startPoint.X = e.X; this.startPoint.Y = e.Y; this.isDragging = true; } #endregion #region 폼 마우스 이동시 처리하기 - Form_MouseMove(sender, e) /// <summary> /// 폼 마우스 이동시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_MouseMove(object sender, MouseEventArgs e) { if(this.isDragging) { Point screenPoint = PointToScreen(e.Location); Location = new Point ( screenPoint.X - this.startPoint.X, screenPoint.Y - this.startPoint.Y ); } } #endregion #region 폼 마우스 업시 처리하기 - Form_MouseUp(sender, e) /// <summary> /// 폼 마우스 업시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_MouseUp(object sender, MouseEventArgs e) { this.isDragging = false; } #endregion } |