Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
1k views

Windows Aero: What color to paint to make “glass” appear?

What color must i paint in the client area in order to make glass appear? i've extended the frame of my form into the client area using: DwmExtendFrameIntoClientArea(self.Handle, margins); i ...
21
votes
3answers
914 views

Vista/7: How to get glass color?

How do you use DwmGetColorizationColor? The documentation says it returns two values: a 32-bit 0xAARRGGBB containing the color used for glass composition a boolean parameter that is true "if the ...
19
votes
4answers
3k views

Delphi support for Aero Glass and the DoubleBuffered property - what is going on and how do we use them?

I am confused by Delphi 2009/2010 support for the Aero Theme Glass features in Windows, and by what, exactly DoubleBuffered means, and what it has to do with Aero glass. I have found that ...
18
votes
2answers
816 views

Aero: How to draw solid (opaque) colors on glass?

Using GDI+ to draw various colors: brush = new SolidBrush(color); graphics.FillRectangle(brush, x, y, width, height); You'll notice that no opaque color shows properly on glass: How do i draw ...
18
votes
2answers
4k views

Qt: Erase background (Windows Aero Glass)

Update see Using Blur Behind on Windows for an example of using Qt and DWM. Original question: I want to create a Windows Aero Glass window with Qt, now it looks like this: But after calling ...
9
votes
1answer
901 views

Disable Background drawing in JFrame in order to properly display Aero (DWM) effects

I'm having problems using the DWM functionality of Windows Vista/7 on Java windows. I want to make the background of my frame use the Aero style. The Windows API to do so is provide by the function ...
8
votes
3answers
2k views

Google Chrome tabs style UI in Delphi

I am looking for the easiest way to implement Google Chrome style tabs over Windows 7 glass, in a Delphi application. It would be great if I could hybridize the Google Chrome tabs style, and one ...
6
votes
1answer
541 views

Tests with TextBox under DWM glass

I'm trying to deal with TextBox text's color under DWM Glass. I read a lot of material, still no perfect solution. The almost perfect results code i found here: ...
5
votes
3answers
2k views

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: ...
5
votes
3answers
919 views

How to get a thumbnail of a window in C#?

How do you go about getting a thumbnail of a window, like Windows 7 superbar preview, or Aero flip? Note that I do not want a screenshot of the application, there is a way in DWM to get this ...
4
votes
1answer
139 views

How do I subscribe to an OS-level event raised when DWM composition/Aero Glass is disabled?

I'm developing a C# application that supports Windows Aero in the main form. Some applications that do not support Visual Styles, for example GoToMeeting, disable visual styles and my form is wrongly ...
4
votes
0answers
493 views

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 ...
4
votes
1answer
2k views

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...
4
votes
2answers
3k views

How to correctly screencapture a specific window on Aero/DWM

Background info: I have this MFC application I coded and been using for a long time that pretty much automatically saves screenshots to the hard disk when the user hits the Print Screen/Alt+Print ...
3
votes
2answers
356 views

Re-drawing the Window title when using custom chrome and DWM

I am using the WPF Shell Integration Library (http://archive.msdn.microsoft.com/WPFShell) however when I use the custom chrome with Aero the title bar is removed. I understand that I need to use ...
3
votes
1answer
162 views

Window regions, moving children, DWM, and the white blocky mess it can create

The setup: I have a top-level window with a region defined (created with SetWindowRgn()), and I have a child element that is moved (with SetWindowPos()) such that some of its pixels then overlap the ...
3
votes
4answers
332 views

Delphi: How to remove subclasses in reverse order?

Mike Lischke's TThemeServices subclasses Application.Handle, so that it can receive broadcast notifications from Windows (i.e. WM_THEMECHANGED) when theming changes. It subclasses the Application ...
3
votes
1answer
3k views

How can I get Aero Glass on a Windows Form without Borders?

I'm trying to have Aero Glass look in my forms in VB.NET 2010 app with DWM API, but as function call suggests, it extends look of Frame to the client area, and if form has no border, nothing will ...
3
votes
3answers
362 views

Wait for disable aero to complete

My app has an option to disable aero by calling DwmEnableComposition(0) before capturing a screen image. As you know, disabling aero makes the screen go black then return to normal afterwards. On ...
3
votes
1answer
3k views

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 ...
3
votes
3answers
116 views

What is the period of time that the window manager waits before marking a window as unresponsive?

How long does windows wait before deciding a window is unresponsive and brings up the the unresponsive chrome? Just from anecodotal experience, I assume it is different in XP and Vista, as they are ...
2
votes
1answer
38 views

How do I do 3d manipulations on live windows 7 window contents?

This is basically a scoping question, where would I look for the facility to render window contents to 3d surfaces and manipulate them? I mean can I have a program like a shell that composites live ...
2
votes
1answer
439 views

How make sure Aero effect is enabled?

Is there any api or something that we make sure, Glass effect is already actived? In some codes that i saw, if DllNotFoundException throws, then they make sure it's not active or not exists. is there ...
2
votes
1answer
447 views

DwmExtendFrameIntoClientArea without TransparencyKey?

When using DwmExtendFrameIntoClientArea function I need to choose Form.TransparencyKey, a color that a glass will be drawn on instead. The problem is that i writing image-edit tool, and when ...
2
votes
1answer
175 views

Why can I clickthrough my form?

I am experimenting and trying to figure out DWM and Windows Aero. So far, I think I pretty much have it, all except for some strange reason, when I click the thicker part of my form, my click goes ...
2
votes
1answer
222 views

use DWM to distort a window under Windows 7

Windows 7 has in DWM function to distort a window. I am looking for information about how to use these functions (undocumented) to distort any window. Thanks in advance for your help, Regards,
2
votes
1answer
314 views

WPF and DWM for redirecting output over the network

Im writing a large WPF app (large as in screen res), running with some basic controls, basic video playing, etc... I have been researching how to broadcast/redirect the WPF window to other monitors ...
1
vote
3answers
53 views

Is there any mechanism in Windows that would allow for system-wide color-inversion (i.e. night mode)?

One of my favorite Mac OSX apps is Blacktree's Nocturne, which inverts the colors of the whole screen such that you end up with a black-on-white display systemwide that is easy on the eyes in a dark ...
1
vote
1answer
48 views

Change dwm colorization - Windows 7

I'm currently trying to write a program in VB.NET which fluidly changes the DWM window colorization colors in Windows 7. I first tried to edit Registry values directly, but I had to restart the UXSMS ...
1
vote
0answers
42 views

Where are the aero button graphics stored?

Where are the images for the aero system menu et al. stored (e.g. shell32.dll has lots of old icons in it)? I need to create a custom drawn, but native-looking form that renders with the DWM enabled ...
1
vote
1answer
315 views

Custom dwm drawn window frame flickers on resizing if the window contains a HwndHost element

I've been thinking about this for a couple of days but I think I lack some basic understanding of how windows and wpf work internally to figure this out. The problem is this: I created a window that ...
1
vote
2answers
203 views

How do I mimic the windows 7 UI?

I want to try and get the same look as Windows 7, with the aero glass dropping down just a little bit so that there can be a back button/address bar/ search box. Are there any tutorials on how to do ...
1
vote
3answers
282 views

Windows Vista/7 glass completely broken?

I'm trying to get the media player glass effect for an application, but I'm facing roadblocks all around. Is it me, or is it the API? I started by calling: MARGINS margins = { -1, -1, -1, -1 }; ...
1
vote
0answers
252 views

GDI+: Why is FillRectangle transparent on glass, while FillEllipse is opaque?

i'm drawing a rectangle, and an ellipse, on glass. brush = new SolidBrush(0xFF000000); //solid (i.e. non-opaque) black graphics.FillRectangle(brush, x, y, 30, 30); graphics.FillEllipse(brush, ...
1
vote
1answer
352 views

How to make dwmapi (Desktop Windows Manager API) work in Windows XP?

I'm doing a windows application using dwmapi.dll on C# and it's not working in windows XP because XP didn't support Desktop Windows Manager API (dwmapi.dll). It's only supported in Vista and Win 7. ...
1
vote
1answer
303 views

When to use DwmExtendFrameIntoClientArea?

As we know, several modern applications (IE9, Firefox 4, Chrome, Paint.NET, etc.) use DwmExtendFrameIntoClientArea for the Aero glass effect. What type of applications should you really use this for, ...
1
vote
0answers
407 views

Flickering UI problems - what causes the DWM in windows 7 to decide to refresh immediately upon calling SetWindowPos?

I have a custom tabbed style control, and internally it works by showing or hiding the relevant page when you click on a tab. The basic order of things that happen when you click a tab is Bring ...
1
vote
0answers
281 views

Windows 7 DWM weirdness

I'm looking to write a FOSS "Alt+Tab" replacement (window switcher) for Windows, since there are a few features I feel it's (still) lacking; but I'm noticing two quirks I can't seem to fix: #1. ...
1
vote
1answer
349 views

Redirect application's graphical output in Windows Vista/7 (with DWM)

I want to create a desktop manager that takes informations of all running applications including states and screenshots to display and manipulate them in my virtual space (probably in 3D). It can be ...
1
vote
2answers
453 views

Disable desktop composition for an application

How do I flag an app in Windows Vista/Seven to disable desktop composition thru registry or NSIS script? Normally it´s done in Compatibility settings in app´s properties.
1
vote
0answers
439 views

Using DwmExtendFrameIntoClientArea causes window to oddly resize

I have an application that uses DwmExtendFrameIntoClientArea to draw a glass effect area at the top of my .NET Form. A strange side effect is that when you maximize and restore the window it grows ...
1
vote
3answers
838 views

Is it possible to capture a window with windows 7 DWM thumbnail in it?

I am starting to believe that you can do nothing with Windows API. I have two windows. One has a DWM thumbnail in it. What I want to do is, I want to be able to capture the screen of the window with ...
1
vote
0answers
749 views

DWM Screen Capturing with DirectX IDXGIOutput::GetDisplaySurfaceData

I'm trying to capture DWM's DirectX surface by using DXGI and GetDisplaySurfaceData(). (I know how to do it with GDI and DirectX 9 but I need it in Direct3D 10/11). However when I'm taking ownership ...
1
vote
1answer
402 views

Desktop Window Manager capture the whole screen

I was wondering if anyone could give me a starting point of how to capture the entire screen in Windows Vista/7? I know how to do it in previous versions of Windows, but would really like to keep ...
1
vote
1answer
541 views

DWM Composition toggle causes client area to lose alpha

I have a simple Windows application here: http://www.bengoodger.com/software/chrome/dwm/app.cc My app provides a customized glass frame for when DWM compositing is active, and a fully custom frame ...
1
vote
2answers
918 views

Checking if DWM/Aero is enabled, and having that code live in the same binary for 2000/XP/Vista/7

I know the title makes little sense, mostly because it's hard to explain in just one line. So here's the situation: I have a program who's binary is targeted at Windows 2000 and newer. Now, I went ...
1
vote
2answers
2k views

Desktop Window Manager in Windows 7

Are there any new DWM APIs in Windows 7? If so, where can I find documentation on them?
1
vote
3answers
537 views

How easy is it in DWM to make an 'always on top' thumbnail for an existing window

I really like when you hover over a window in Vista on the taskbar and it gives you a little preview. if it is video it even plays in the thumbnail. Often I really wish I could 'tear off' this ...
0
votes
1answer
116 views

Bad visual behavior with extended GlassFrame

I have a major problem which I can't solve. I'm editing question in order to simplify what really happens: Create blank Delphi application (I've tried this in 2007) In Form constructor ...
0
votes
0answers
27 views

Full-screened app shows as black rectangle in Windows Flip 3D (pressing Win+TAB)

We have a DirectX application which can switch to full-screen mode. While in full-screen mode, pressing Win+TAB brings up the Aero Flip 3D interface, but the thumbnail for the application is a black ...

1 2