How can you convert the System.Windows.Point that is returned by MouseDevice.GetPosition(null), which is relative to a WPF window into screen coordinates.
There's this hack (How to get control location in screen coordinate system) but it's almost over two years old and will only work under certain constraints. As that article describes this is not trivial to get right so I'd like to rely on a WPF method if possible.
I'm using .NET Framework 4.0 so I am not worried about backward compatibility with earlier .NET framework versions.