1

A litle while ago I was on Codeproject and came across a cool little tesxteditor and the whole form was made out of aero-glass, and the whole textbox was too. But I can't find it anymore. Does anybody know where it's gone? Or how I can make my Windows Form completely made out of Aero Glass?

Thank you :)

jay_t55
  • 11,362
  • 28
  • 103
  • 174

3 Answers3

2

This is for windows forms. not for WPF.

http://blogs.msdn.com/tims/archive/2006/04/18/578637.aspx

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
ms_devel
  • 502
  • 1
  • 10
  • 27
0

Could this be what you're after...

Enable Vista glass effect on a borderless WPF window

Community
  • 1
  • 1
Ally
  • 2,195
  • 1
  • 16
  • 29
  • thanks Alasdair. I have considered WPF although I don't like the weird effects it has while using it on my computer. I don't know why but all wpf apps seem to run slowly on this computer – jay_t55 Dec 29 '09 at 17:16
0

So this time with the launch of Windows 7, Microsoft provides the Windows 7 API Code Pack. The Windows 7 API Code Pack not only just allows incorporating the aero glass effect, but many other features which will let you to work more conveniently with Windows 7.

The Windows API code pack allows developers to develop those features which are not available with .NET Framework. So to get started visit:

Windows® Code Pack API for Windows 7 & Windows Vista 

http://code.msdn.microsoft.com/WindowsAPICodePack

Windows Training Kit 

http://www.microsoft.com/downloads/details.aspx?familyid=1C333F06-FADB-4D93-9C80-402621C600E7&displaylang=en

The training kit includes the demos and presentations, hand-on labs for developers. I haven't yet started with Windows 7 development. But as soon as I get started I will blog some demo for Windows 7.

Elephant
  • 1
  • 1
  • 1
    You'd better document what specific class in the code pack helps implement glass. Pretty sure there isn't one, other than in the sample code (searchapp). – Hans Passant Feb 26 '12 at 16:14
  • GlassForm and GlassWindow implement glass. As for controls on the form, good luck. – Triynko Feb 05 '14 at 19:50