Say you have a borderless WPF window (WindowStyle="None"), the problem arises, how can one still move/drag the window around on the desktop (as there simply is no more window title bar)?
It's actuelly pretty simple:
MouseDown += delegate { DragMove(); };
Thanks to
Marlon for this hint.