|
|
От: |
orangy
|
http://twitter.com/orangy |
| Дата: | 09.09.05 04:28 | ||
| Оценка: | |||
public static Point Position
{
get
{
System.Windows.Forms.NativeMethods.POINT point1 = new System.Windows.Forms.NativeMethods.POINT();
System.Windows.Forms.UnsafeNativeMethods.GetCursorPos(point1);
return new Point(point1.x, point1.y);
}