views:

152

answers:

4

For the past two days i have been looking around the net to find how Opera made their pre-alpha build with that UI. I mean its like built with windows shell here are some screenshots

alt text alt text

any tutorials , books or videos would be helpful

P.S. I also saw the win 7 SDK but its all C++ samples and i learn C#

A: 

Have you checked this tutorial out?

http://www.codeproject.com/KB/miscctrl/FancyNetForms.aspx

It looks quite good...

JustAPleb
not exactly what I'm going for
Aviatrix
OK, well the guy on CodeProject - Sacha Baber is a good one to look at WPF stuff.
JustAPleb
A: 

You need to custom build something like that using Windows Presentation Foundation (WPF), a sample of what you can build is http://www.devcomponents.com/dotnetbar-wpf/

abmv
+1  A: 

Maybe this will be helpful too:

Aero Glass inside a WPF Window

Holli
+1 for the glass effect
Aviatrix
Is opera going WPF, or did you just pick that as a good intro to using Aero in general?
Dan Neely
No , i don't think opera is going WPF, and yes i just want an intro to Aero in general , and how did they added the buttons to the title bar ? if its possible to give C# examples
Aviatrix
+2  A: 

for c# there is http://code.msdn.microsoft.com/WindowsAPICodePack/Release/ProjectReleases.aspx?ReleaseId=3574

especcially look at GlassForm class it certainly allows that icons on the transparent filed in the status bar.

TGadfly