Hey there, whoever whose reading this, I'd like to know how to obtain the coordiantes when a user clicks the form in relation to the form, meaning if the top left hand corner of the window is clicked, it should be x=0, y=0...
I should think this is an easy problem to solve, but I'm just a beginner... Could anybody lend a hand? :p
currently I'm using:
Point p = Main_Window.MousePosition;
label1.Text = "X: " + p.X;
label2.Text = "Y: " + p.Y;
Which only shows me the coordiantes in relation to the computer screen.
Cheers!