Hello gayz,
i have a written a screen saver App in C# & WPF, everything is done, the only thing is to exit the screen saver when the mouse move event get fired.
if i write:
private void Window_MouseMove(object sender, MouseEventargs e)
{
this.Close();
}
the screen saver doesn't starts at all. therefor:
i need the to get the mouseposition bevor the mousemove event fired, and then check if the mouse was moved more than 20 pixel, than exit the App.
how do i get the MousePosition.
Thanks for any help.