vote up 0 vote down star
1

Does anyone know any kind of framework that enables (not exactly the same, but) Vista's Aero Glass on XP?

I need to develop a little desktop application with WPF, which has a Vista-like UI on XP. I don't need exactly the Aero Glass, some UI like "Windows Live Messenger" will do the thing. Is there any way to make it a reality?

flag

3 Answers

vote up 2 vote down

If you really mean Aero Glass then I think you're out of luck. The hardware acceleration required to create this effect is only supported via Vista's new DWM (Desktop Window Manager), which works by compositing multiple windows together into one rendered layer.

If you just want transparency and non-rectangular windows then this can definitely be achieved in XP, as evidenced by the fact that Windows Live Messenger can do it. Have a look at Layered Windows in MSDN.

link|flag
What aspect of Glass requires the Vista DWM? – Iraimbilanja Jan 27 at 17:44
1  
Essentially, it requires hardware acceleration for performance, which isn't available under GDI. – Stu Mackellar Jan 27 at 19:20
Right. To put it another way. What aspect of Glass requires hardware acceleration considering glass is nothing but ARGB transparency which as you say is available in xp. – Iraimbilanja Jan 27 at 20:12
1  
No it's not. Glass is a filtered and blurred transparency effect that is achieved with a csutom PS 2.0 pixel shader. It also relies on DWM composition. If you think Aero Glass is simple alpha-channel transparency then I suggest you look a bit closer. – Stu Mackellar Jan 27 at 20:23
Ah right. The blur. I reckon 90% of the glass feel is the transparency and reflections, but indeed it's not quite the same without the blur. – Iraimbilanja Jan 27 at 20:33
vote up 1 vote down

As Stu Mackellar wrote, Windows XP is missing a required piece in order to obtain Aero Glass effect: DWM. A solution is to create your own "fake" glass effect. Thake a look to this blog (you can download the code).

link|flag
vote up -1 vote down

Hi, add reference of "PresentationFramework.Aero" to your solution.then write these codes in App.Xaml file:

    <Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/PresentationFramework.Aero;component/themes/aero.normalcolor.xaml"/>
        </ResourceDictionary.MergedDictionaries>
</Application.Resources>

Hope this helps ;)

link|flag

Your Answer

Get an OpenID
or

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