我需要一些关于鼠标位置和屏幕分辨率的帮助。
我有两个应用程序在两台不同的机器上运行:
application1 (分辨率:1920 x 1200)捕获鼠标位置,然后将位置值发送到application2。
application2 (分辨率:1280 x 800)根据这些值接收并设置光标位置。
这很好用,我遇到的问题是,application1与application2有不同的屏幕分辨率,因此从application1发送的鼠标位置不会转换为application2上的屏幕分辨率和光标位置。
有人知道如何将这些光标位置(X,Y)值转换为正确的值吗?所有这些都假设application2表单窗口当然是完全最大化的,否则必须进行类似的值转换基于表单窗口大小。
这就是application1捕获鼠标位置的方式:
Point mouseLocation;
public Form1()
{
InitializeComponent();
this.MouseMove += new MouseEventHandler(Form1_MouseMove);
}
void Form1_MouseMove(object sender, MouseEventArgs e)
{
mouseLocation = e.Location;
// now we're send the "mouseLocation" values to the application2
}
这就是application2根据收到的值设置光标位置的方法:
public Form1()
{
InitializeComponent();
// we bring the position values
int x_value = int.Parse(position[0].ToString());
int y_value = int.Parse(position[1].ToString());
Cursor.Position = new Point(x_value, y_value);
}
答案 0 :(得分:2)
您可以编写一个简单的帮助方法,如下所示:
private static Point Translate(Point point, Size from, Size to)
{
return new Point((point.X * to.Width) / from.Width, (point.Y * to.Height) / from.Height);
}
private static void Main(string[] args)
{
Size fromResolution = new Size(1920, 1200);//From resolution
Size toResolution = new Size(1280, 800);//To resolution
Console.WriteLine(Translate(new Point(100, 100), fromResolution, toResolution));
//Prints 66,66
}