winforms 找不到系统窗口点

wz3gfoph  于 2023-03-19  发布在  其他
关注(0)|答案(2)|浏览(155)

我将UIAutomation与方法一起使用

System.Windows.Automation.AutomationElement.FromPoint(System.Windows.Point)

通过鼠标光标获取元素,但是我找不到类型System.Windows.Point。我查找了对象库,它仍然不可见。
我使用的是.Net框架4.5。

yiytaume

yiytaume1#

正如@HansPassant所说,你必须添加一个对“WindowsBase”的引用。我只是添加了答案,因为评论可能会被忽略。

4urapxun

4urapxun2#

System.Windows.Point是WPF的一部分,如果你试图在WinForms应用程序中执行此操作,它不受支持- Peter里奇14年10月4日0:10

相关问题