C#WPF应用程序.NET 4.5设置鼠标位置
作者:互联网
参见英文答案 > How to move mouse cursor using C#? 2个
第一次在这里问一个问题,我在这里找到的解决方案似乎不是出于某种原因而起作用.我的应用程序需要在窗口变为活动状态时设置鼠标位置,我已设置功能但无法使光标属性起作用.我出于某种原因无法使用Cursor.Position或其他任何东西.我曾希望访问聊天室找到解决方案,但显然我不会说话,直到我有20个声望.
所以我在这里询问如何用类似的方式改变光标位置
this.Cursor.SetPosition(x,y);
谢谢您的帮助.
编辑:尝试从here开始作为测试:
private void MoveCursor()
{
// Set the Current cursor, move the cursor's Position,
// and set its clipping rectangle to the form.
this.Cursor = new Cursor(Cursor.Current.Handle);
Cursor.Position = new Point(Cursor.Position.X - 50, Cursor.Position.Y - 50);
Cursor.Clip = new Rectangle(this.Location, this.Size);
}
但编译器抱怨Current,Position,Clip,Location,Size
最终解决方案
using System.Runtime.InteropServices;
...
[DllImport("User32.dll")]
private static extern bool SetCursorPos(int X, int Y);
...
Point relativePoint = MouseCaptureButton.TransformToAncestor(this)
.Transform(new Point(0, 0));
Point pt = new Point(relativePoint.X + MouseCaptureButton.ActualWidth / 2,
relativePoint.Y + MouseCaptureButton.ActualHeight / 2);
Point windowCenterPoint = pt;//new Point(125, 80);
Point centerPointRelativeToSCreen = this.PointToScreen(windowCenterPoint);
SetCursorPos((int)centerPointRelativeToSCreen.X, (int)centerPointRelativeToSCreen.Y);
解决方法:
您可以使用InteropServices轻松完成此任务:
// Quick and dirty sample...
public partial class MainWindow : Window
{
[DllImport("User32.dll")]
private static extern bool SetCursorPos(int X, int Y);
public MainWindow()
{
InitializeComponent();
SetCursorPos(100, 100);
}
}
只需确保包含System.Runtime.InteropServices名称空间.还有很多其他方法,例如上面重复链接中指出的方法.使用最适合你的东西.
编辑:
在评论中的每个请求中,这是使其成为应用程序窗口坐标系而不是全局坐标系的一种方法:
public partial class MainWindow : Window
{
[DllImport("User32.dll")]
private static extern bool SetCursorPos(int X, int Y);
public MainWindow()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
SetCursor(200, 200);
}
private static void SetCursor(int x, int y)
{
// Left boundary
var xL = (int)App.Current.MainWindow.Left;
// Top boundary
var yT = (int)App.Current.MainWindow.Top;
SetCursorPos(x + xL, y + yT);
}
}
我不认为你会这样做…但只是确保你不要在初始化阶段(在构造函数中)尝试获取Window坐标.等到它被加载,就像我上面的做法一样;否则,您可能会获得某些值的NaN.
如果要将其限制为窗口的限制,一种简单的方法是将System.Windows.Forms添加到引用中,并使用重复链接中提供的代码.但是,如果你想使用我的方法(所有关于个人偏好…我使用我喜欢的…并且我喜欢PInvoke),你可以在传递它们之前检查SetCursor(..)中的x和y位置SetCursorPos(..),与此类似:
private static void SetCursor(int x, int y)
{
// Left boundary
var xL = (int)App.Current.MainWindow.Left;
// Right boundary
var xR = xL + (int)App.Current.MainWindow.Width;
// Top boundary
var yT = (int)App.Current.MainWindow.Top;
// Bottom boundary
var yB = yT + (int)App.Current.MainWindow.Height;
x += xL;
y += yT;
if (x < xL)
{
x = xL;
}
else if (x > xR)
{
x = xR;
}
if (y < yT)
{
y = yT;
}
else if (y > yB)
{
y = yB;
}
SetCursorPos(x, y);
}
请注意,如果应用程序使用Windows外观,您可能需要考虑边框.
标签:c,wpf,cursor-position 来源: https://codeday.me/bug/20190609/1207548.html