vGichar
vGichar

Reputation: 81

C# Windows Form App on top

I'm wondering if is posible for a Windows Form program to cover the pointer.

I want to have an animation as a part of a C# WinForm app and be on top of everything, even the pointer, is it possible and if it is, what to do?

p.s. this question extends to the desktop popup menu too.

Upvotes: 0

Views: 88

Answers (1)

Jack Pettinger
Jack Pettinger

Reputation: 2755

You can hide the cursor while the animation is running, then show it again after it has finished.

cursor.Hide();

Upvotes: 1

Related Questions