4

I want to disable the shadow effect on a specific aero window. All I have is the HWND of this window, is this possible?

Don
  • 85
  • 1
  • 5

1 Answers1

1

The shadow is defined by the theme currently used by the OS. You cannot disable it for one window only. You can change the theme and disable shadows, but it will be a system-wide change, not specific to one window.

In your case, one of the best approached would be creating your own window structure (starting from a borderless window) that will have similar transparency properties as Aero. This will not be an easy task, but certainly achievable.

Den
  • 16,686
  • 4
  • 47
  • 87
  • The problem is I want to disable the shadow on a 3rd party app – Don Sep 12 '10 at 22:27
  • That's going to be a system-wide change that will affect all applications. That's the way the composition engine works. – Den Sep 12 '10 at 22:33