Xantom
Xantom

Reputation: 67

C# MouseHover with form control

Using C# in VS 2010 Pro.

I have an MDI parent form that implements a MouseHover event on a label. On MouseHover a form is displayed. I am not happy with the random positioning of that form. Is it possible to control where that form is displayed? I would like it to show where the mouse cursor is.

Any suggestions are appreciated, thanks!

Upvotes: 1

Views: 309

Answers (1)

user27414
user27414

Reputation:

Set the Location property on the form to your desired location.

Upvotes: 1

Related Questions