Return to Snippet

Revision: 64482
at August 12, 2013 12:01 by wraith808


Initial Code
public MainWindow()
{
   InitializeComponent();
   this.MouseLeftButtonDown += delegate { this.DragMove(); };
}

Initial URL


Initial Description
I wanted to create a borderless window, but still be able to move it.  I thought it would be complicated, but just like a lot of things with WPF, things were simpler than I thought...

Initial Title
Move Borderless WPF Window

Initial Tags
c#

Initial Language
C#