gpt4 book ai didi

wpf - 在WPF中强制鼠标沿特定轴移动

转载 作者:行者123 更新时间:2023-12-05 00:26:54 25 4
gpt4 key购买 nike

在用户按住鼠标左键的同时,如何强制鼠标沿特定轴移动?
我希望用户能够沿X轴移动鼠标,同时“取消” Y轴上的任何移动。

谢谢
伊甸园

最佳答案

检查此:http://social.msdn.microsoft.com/Forums/en/wpf/thread/9b07abce-bb32-4cd1-9ae5-d34973d5cc95

从链接:

public partial class MouseOperations 
{
[System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint = "SetCursorPos")]
[return:System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)]
public static extern bool SetCursorPos(int X, int Y);
}


您必须从 Mouse.MouseMove event handler调用该方法。

MouseOperations.SetCursorPos(xAxisPosition,0);

关于wpf - 在WPF中强制鼠标沿特定轴移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3068488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com