How to set WS_EX_NOANIMATION equivalent Window Style?

  • Thread starter Thread starter rucky
  • Start date Start date
R

rucky

I have a form that dynamically changes from full screen to windowed
mode, and want to remove the exploding/imploding animation that is the
default behavior.

Anyone know the equivalent implementation of WS_EX_NOANIMATION in .NET
CF?

Thanks.
 
winuser.h defines the following:

#define WS_EX_NOANIMATION 0x04000000L

So use a P/Invoke pair of Get/SetWindowStyle and change this bit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top