Questions tagged [mouse-position]
197 questions
-1
votes
1 answer
Get the node clicked
I have the code in C# for getting node clicked:
public Node ChartMouseDownFindNode(Graphics graphics, Font font, Point mousePosition)
{
this.mousePosition = Cursor.Position;
Pen pen = new Pen(Color.FromArgb(255, 124, 176, 34), 2);
…

Axess
- 101
- 2
- 10
-2
votes
1 answer
Mouse.CursorPos not working
I want the user to be able to set the mouse cursor position over an item in a TDBGrid of their choice at start up.
I have a Popup menu, and CursorPoint is a global TPoint the X and Y of which are saved to an .ini file and loaded at start up. But…
user2175495