Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 VB.NET 2010 在另一个应用程序中获取光标在屏幕上的当前位置/坐标。例如,如何在记事本或 MS Word 中获取当前光标位置?
我猜这对于记事本来说是不可能的。对于 Word,如果此 Interop Modell 公开此信息,则它是可能的。如果在word中选择了文本,您可以使用选择对象找到您需要的信息。
这会将变量设置为光标位置。
Dim MousePosition As Point MousePosition = Cursor.Position
然后你可以在你想要的地方使用这个变量