Questions tagged [aero]

Windows Aero is the graphical user interface and the default theme in most editions of Windows Vista and Windows 7

292 questions
12
votes
2 answers

Blurring the background of a semi-transparent form (like Aero glass)

I have a borderless, non-resizable WPF form (WindowStyle=None, AllowsTransparency=True, ResizeMode=NoResize) with a semi-transparent background. Here's a picture of how the form, a semi-transparent red rectangle, looks right now, running on top of…
Zdeněk Gromnica
  • 854
  • 2
  • 14
  • 31
11
votes
3 answers

How do I display open IE tabs as DWM thumbnails?

I am building a WPF application in C# and I want to display thumbnails of open IE tabs in a listbox. I'm essentially trying to duplicate the DWM functionality in Windows 7. I have figured out how to enumerate a list of open tabs using…
Robert S.
  • 25,266
  • 14
  • 84
  • 116
11
votes
1 answer

C#: Glass Forms?

How can I use aero glass to cover my entire forms? Here is an example of what I mean:
Nahydrin
  • 13,197
  • 12
  • 59
  • 101
11
votes
1 answer

Custom Shaped Aero Windows in C#? Like THESE!

How do I make an irregular shaped Aero window like this one? Look in the lower right corner! This program also does it. This also does it! >_< Even more...
Vercas
  • 8,931
  • 15
  • 66
  • 106
11
votes
1 answer

Aero: How to draw ClearType text on glass?

Using GDI+ to draw text on glass: graphics.DrawString(s, Length(s), font, MakePointF(x, y), brush); You'll notice that the ClearType enabled text draws very poorly on glass: But with glass disabled the text, of course, draw fine: By way of…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
11
votes
3 answers

DwmExtendFrameIntoClientArea without Aero Glass

Using the DwmExtendFrameIntoClientArea API call with Aero Glass enabled works just fine. However, I want it to work when Aero Glass is disabled as well, like how it works in the Windows control panel: Notice how the frame has extended into the…
Alex
  • 3,429
  • 4
  • 36
  • 66
10
votes
1 answer

What is the API to "create applications like Flip3D"

I am trying to figure out how to use DWM to render a copy of a Window into my own desired location. The only thing I can find to tell DWM to render somewhere is with the thumbnail APIs. But MSDN's DWM Thumbnail Overview they specifically warn me…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
10
votes
7 answers

Windows 7 Aero Theme Progress Bar Bug?

I have ran into what I consider to be a progress bar bug on Windows 7. To demonstrate the bug I created a WinForm application with a button and a progress bar. In the button's 'on-click' handle I have the following code. private void…
jmatthias
  • 7,375
  • 7
  • 27
  • 36
10
votes
1 answer

Handling WM_NCPAINT "breaks" DWM glass rendering on Vista/Aero

I am trying to make a window that alternates between having an Aero/Glass and a custom rendered frame (by handling WM_NCPAINT) based on a user setting. (Windows Vista). DwmComposition is enabled. My app comes up with the glass frame, but as soon as…
Ben Goodger
9
votes
5 answers

Disabling progress bar animation on Vista Aero

I'm using a Delphi 2009 VCL TProgressBar as a kind of "empty/full" gauge. On Vista, with Aero theme enabled, this has an animation associated with it, which is annoying and inappropriate for an gauge. Is there any way of disabling this (NOT by…
Roddy
  • 66,617
  • 42
  • 165
  • 277
9
votes
12 answers

How do you disable Aero Snap in an application?

Is it possible to disable the automatic window-docking feature of Windows 7 in a WPF application?
hans
  • 141
  • 1
  • 1
  • 4
9
votes
2 answers

Borderless window in Qt on Windows which supports native features: aero snap, DWM resize and minimization

I'm trying to create a borderless window in Qt on Windows which supports native features: aero snap, DWM resize and minimization, shake, etc. Like Office 2013 or Visual Studio 2012. But they are written in wpf. There are a lot of examples in wpf and…
PKE
  • 161
  • 2
  • 8
9
votes
3 answers

Programmatically Maximize Window On Half Of Screen

I want to maximize a random window on the left side of my screen. Can I use Windows Aero functions from my code ? This window can be maximized like that with the mouse. I just want to do that programmatically. I use C# and I can get the IntPtr of…
Bitterblue
  • 13,162
  • 17
  • 86
  • 124
9
votes
1 answer

How does Windows change Aero Glass color?

I'm using Windows 7 RTM and I wonder how the control panel is able to update the Aero Glass color so smoothly without restarting the DWM (uxsms). DwmSetColorizationColor isn't working any more...
Fred
  • 93
  • 1
  • 3
9
votes
2 answers

Glass is not rendered right

I made a form and extended the glass in it like in the image below. But when I move the window so not all of it is visible on screen, the glass rendering is wrong after I move it back: How can I handle this so the window is rendered correctly? This…
Victor
  • 13,914
  • 19
  • 78
  • 147
1
2
3
19 20