Tagged Questions

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 ...
18
votes
2answers
814 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 ...
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: ...
4
votes
0answers
492 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 ...
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 ...
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,
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
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
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
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 ...
0
votes
0answers
26 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 ...
0
votes
1answer
365 views

Disable Aero Peek in WPF application

I want to disable Aero Peek in my WPF application (my application must be visible when user placed the mouse over the button "Show desktop"). I use this PInvoke signature: [Flags] public enum ...
0
votes
2answers
1k views

Windows Forms Glass Effect, Make ImageBox transparent

I have a windows form application, and I have extended the window's frame into the client area using DwmExtendFrameIntoClientArea to get the glass effect. Now I'm trying to show a transparent PNG ...
0
votes
1answer
439 views

Windows thumbnail preview with JNA (Java)

W32API.HWND targetHwnd = User32.INSTANCE.FindWindow('SunAwtFrame', 'Frame') W32API.HWND sourceHwnd = User32.INSTANCE.FindWindow('triuiScreen', 'EVE') W32API.HANDLE thumbnailH = new W32API.HANDLE() ...
0
votes
1answer
374 views

Why could DwmRegisterThumbnail fail?

I am trying to capture screen of a child window and render it on parent surface in Windows 7. HTHUMBNAIL thumbnail = NULL; HRESULT hr = S_OK; hr = DwmRegisterThumbnail( hWnd, visualHwnd, ...