-
C# 폼 이동 방법닷넷/WinForms 2016. 7. 19. 18:53반응형
폼의 타이틀을 없앴거나 타이틀 외에도 다른 부분을 클릭해서 폼을 움직이게하고자 한다면
아래와 같이 코딩하면 된다.
private bool onDrag = false;
private Point point0;
private void frmMain_MouseDown(object sender, MouseEventArgs e)
{
this.onDrag = true;
this.point0 = new Point(e.X, e.Y);
}
private void frmMain_MouseMove(object sender, MouseEventArgs e)
{
if (this.onDrag == false) return;
int x0 = this.Location.X;
int y0 = this.Location.Y;
int dx = e.X - this.point0.X;
int dy = e.Y - this.point0.Y;
this.Location = new Point(x0 + dx, y0 + dy);
}
private void frmMain_MouseUp(object sender, MouseEventArgs e)
{
this.onDrag = false;
}
반응형'닷넷 > WinForms' 카테고리의 다른 글
C# 윈폼에서 같은 컨트롤들을 한번에 제어하는 방법 (2) 2016.08.18 C# 컨트롤 사이즈에 맞춰서 폰트 크기 자동조절 (0) 2016.08.12 C# WindowsForm에서 배경 투명하게 하는 방법 (0) 2016.07.19 C# ComboBox 아이템 추가 (0) 2016.07.05 C# TextBox 자동 완성 (0) 2016.07.05