I have a Window element that has WindowStyle=\"None\" and AllowsTransparency=\"True\", therefore it has no title bar and supports tran
Window
WindowStyle=\"None\"
AllowsTransparency=\"True\"
I believe you are reinventing the wheel. Search for "Window.DragMove".
Example:
private void title_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { this.DragMove(); }