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.
 
Back
Top