vote up -3 vote down star

Duplicate:

Is it possible to achieve the “Aero Glass” look on XP?


If I use Winforms and I write a win32 application with it, I can see the Aero glass effects in Vista but not in XP.

How could I achieve the same look across different platforms? I am using WPF.

As a side question, did Microsoft write the Aero glass effects using WPF? If so, shouldn't the glass effect be the default WPF look on the other platforms?

flag

56% accept rate
2  
Only Windows supports .NET. Other platforms support some cross-platform implementation of .NET, but it is not the same thing. Anyway, that theme is not a part of .NET, it is built into the operating system, .NET is just a higher level wrapper. – Ed Swangren Aug 17 at 23:43
1  
@Ed: Not true for WPF. Since WPF doesn't use the standard controls and draws everything, the framework defines the look of controls through themes, which can be changed and copied. – Cameron MacFarland Aug 17 at 23:46
@Cameron, that's what I thought. It has as few dependencies as possible to Windows, right? Also Mono doesn't have WPF? – Joan Venge Aug 17 at 23:50
1  
@Joan: Yes and yes. WPF's only dependancy to Win32 is the window handle itself. Everything inside the window is handled by WPF. And unfortunately right now Mono doesn't support WPF (although it does support Silverlight). – Cameron MacFarland Aug 18 at 0:03
1  
And rewrite WPF to not use DirectX :P – Cameron MacFarland Aug 18 at 1:25
show 1 more comment

2 Answers

vote up 5 vote down check

What "Aero effect" are you referring to? If you're talking about the window glass, then I'm afraid you're out of luck, as the glass effect is made possible only through Vista's Desktop Window Manager.

If you're simply looking for window transparency, rounded corners, etc., then this is certainly possible in XP. Check out this article for more information.

link|flag
Thanks, yeah I meant the glass effect. Desktop Window Manager is outside the .NET I bet? – Joan Venge Aug 17 at 23:48
Desktop Window Manager is OS-centric (built into Vista). It is not part of the .NET library. – Charlie Aug 18 at 1:37
vote up -1 vote down

i donno what Microsoft didn but the trick for this is simple, use aplha (transparency) and images that when transparent will give the kind of effect and when images will overlap, what will do do multiply, overlay, screen, color burn etc, if you know photoshop and layers blending then you should know what i am taking about... you have to write algo to process overlapping images.. this method works on every platform ...

and it is not out of .NET, if i get time i will show you and example

link|flag
2  
No, it's done using pixel shaders, not the same as simple blending - the windows behind the "glass" are actually blurred and shaded, not just blended. – Shog9 Aug 18 at 14:47
because of the transparent image above – King Aug 20 at 4:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.