-
Notifications
You must be signed in to change notification settings - Fork 5
/
CatchObjectAtMousePoint.cs
36 lines (33 loc) · 1.05 KB
/
CatchObjectAtMousePoint.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Drawing;
using System.Windows.Automation;
namespace Ulavali
{
public class CatchObjectAtMousePoint
{
private AutomationElement _objectAtCurrentMousePosition = AutomationElement.RootElement;
public AutomationElement ObjectAtCurrentMousePosition
{
get
{
_objectAtCurrentMousePosition = getAutomationElementAtCurrentCursorPosition();
return _objectAtCurrentMousePosition;
}
}
private AutomationElement getAutomationElementAtCurrentCursorPosition()
{
try
{
var mousePosition = new Point();
NativeMethods.GetCursorPos(ref mousePosition);
//todo: handle if exception is thrown
return AutomationElement.FromPoint(new System.Windows.Point(mousePosition.X, mousePosition.Y));
}
catch (Exception e)
{
Console.WriteLine(e);
return null;
}
}
}
}