/ Published in: C#
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...
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public MainWindow() { InitializeComponent(); this.MouseLeftButtonDown += delegate { this.DragMove(); }; }