I am using the below code to get the current mouse position in a WPF application.
System.Drawing.Point _point = System.Windows.Forms.Control.MousePosition;
This works good. But when the user has a 125% display settings in the machine (Windows 7), the mouse position is wrong. Am I doing anything wrong?