-1

I saw that Windows 7 Wizard has the title bar extended without requiring Aero Glass. Look at this:

Without Aero Glass

With Aero Glass

I made my application to work with Aero Glass, but how about withiut it?

Thanks in advance!

Victor
  • 13,914
  • 19
  • 78
  • 147

2 Answers2

0

I haven't test this yet, but I think it will work, mark it as answer if you agree:

[DllImport("uxtheme")]
static extern int DrawThemeBackground(IntPtr hTheme, IntPtr hdc, int iPartId, int iStateId, ref RECT pRect, ref RECT pClipRect);

This method works, loog at this

Victor
  • 13,914
  • 19
  • 78
  • 147
-1

You shouldn't need to do anything. The DWM is still running when using the Basic theme, it's just not doing any accelerated rendering.

David Brown
  • 35,411
  • 11
  • 83
  • 132