按键精灵如何利用qui界面实现点位坐标抓取?

2025-03-20 20:45:19
推荐回答(1个)
回答1:

Event Form1.Button1.Click

    Delay 100

    If WaitClick = 32769 Then 

        GetCursorPos x, y

        Form1.InputBox1.Text = x & "|" & y

    End If

End Event