2013/05/07

[C#] WPF 윈도우를 마우스 드래그로 이동하기

private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
base.OnMouseLeftButtonDown(e);

this.DragMove();
}
<

Original Post : http://neodreamer-dev.tistory.com/705

No comments :

Post a Comment