Hello guys,
I'm making an application for myself and I need to get the coordinates of the mouse when left click was pressed. I managed to get the coordinates when I click on the form by using
MouseUp += new MouseEventHandler(KeyCaptured);
void KeyCaptured(object sender, MouseEventArgs e)
but when I click inside the webBrowser nothing happens.
Any idea how should i capture that left click?
Thx:)