vote up 2 vote down star

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...

flag

3 Answers

vote up 1 vote down check

The following methods should be of interest to you:

[DllImport("dwmapi.dll", EntryPoint = "#127", PreserveSig = false)]
public static extern void DwmGetColorizationParameters(out WDM_COLORIZATION_PARAMS parameters);

[DllImport("dwmapi.dll", EntryPoint = "#131", PreserveSig = false)]
public static extern void DwmSetColorizationParameters(WDM_COLORIZATION_PARAMS parameters, uint uUnknown);

public struct WDM_COLORIZATION_PARAMS {
    public uint Color1;
    public uint Color2;
    public uint Intensity;
    public uint Unknown1;
    public uint Unknown2;
    public uint Unknown3;
    public uint Opaque;
}

Make sure you make a call to DwmIsCompositionEnabled before calling the DwmSetColorizationParameters method or it will fail.

As you can see some of the arguments/properties are unknown.
For more information, here is a link (in German)

link|flag
+1 to counteract a stupd -1. This answer is an answer to the question "How does it do..." This is probably exactly how it does it. Although i read the original question as "How does it do..." and not "*How* does it do..." – Ian Boyd Dec 4 at 16:22
In Windows 7 the original method DWMSetColorization throws an exception (it was supported in Windows Vista though). I assume it was his intention to find a new method that offers the same functionality as the old one. One option is to write a .theme file and execute that or use the undocumented method I specified above. – Zyphrax Dec 6 at 13:09
vote up 0 vote down

Here are some MSDN samples for working with Aero:

http://msdn.microsoft.com/en-us/magazine/cc163435.aspx

It's interesting that, though you can retieve settings with DwmGetColorizationColor, it makes no mention at all of the "Set" version of that call. I've not worked with Glass before, so I don't have any additional input, but there has to be a matching function somewhere in 7.

ALSO: It looks like this guy isn't able to get a response either, and Googling for DwmSetColorizationColor returns next to nothing, so there has to be another call for it somewhere. I wish I could offer more help...

link|flag
vote up 0 vote down

I'm pretty sure it makes a call to SystemParametersInfo().

Retrieves or sets the value of one of the system-wide parameters. This function can also update the user profile while setting a parameter.

Also you can easily change the desktop wallpaper like this in C#:

private const int SPI_SETDESKWALLPAPER = 20;
private const int SPIF_UPDATEINIFILE = 0x1;
private const int SPIF_SENDWININICHANGE = 0x2;

[DllImport("user32.dll", CharSet=CharSet.Auto, SetLastError=true)]
public static extern int SystemParametersInfo(int uAction, int uParam, string lpvParam, int fuWinIni);

private void button1_Click(object sender, System.EventArgs e)
{
    SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, "(None)", SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE );
    SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, @"C:\WINNT\Soap Bubbles.bmp", SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE );
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.