Как узнать координаты нажатия мыши?
Всем привет. Как узнать координаты нажатия мыши по любой точке на экране?
Или Код C#
//Получаем координаты курсора
int CursorX = Cursor.Position.X;
int CursorY = Cursor.Position.Y;
textBox.Text = CursorX.ToString() + " " + CursorY.ToString();
//Скрываем курсор
Cursor.Hide();
//Установка положения курсора
Cursor.Position = new Point(128, 128);
http://javascript.ru/tutorial/events/properties#koordinaty-myshi:-clientx-y-pagex-y
import java.awt.event.MouseMotionListener;
public class TEST{
public static void main(String args[]){
static int x;
static int y;
JFrame frame = new JFrame("МЫШКА");
frame.addMouseMotionListener(new MouseMotionListener(){
public void mouseDragged(MouseEvent e) {
x = e.getX();
y = e.getY();
}
public void mouseMoved(MouseEvent e) {
}
});}}