Modifying opacity of any window from C#
Asked Answered
B

1

5

Is it possible to modify the opacity of all opened windows from C#. I googled for minimizing the windows and i came to know that its possible with pInvoke calls. It even worked. Similarly is it possible to change the opacity of all the opened windows from C#?

Also, i am not in to MFC stuffs. Still is there any tools to know the list of apis exposed in a dll?

Blandishments answered 1/9, 2009 at 6:1 Comment(0)
C
12

You can use SetLayeredWindowAttributes API to do so.

Check this for the pInvoke version of this API.

Sample Code from the above-mentioned link:

[DllImport("user32.dll")]
static extern bool SetLayeredWindowAttributes(IntPtr hwnd, uint crKey,byte bAlpha, uint dwFlags);

public const int GWL_EXSTYLE = -20;
public const int WS_EX_LAYERED = 0x80000;
public const int LWA_ALPHA = 0x2;
public const int LWA_COLORKEY = 0x1;

//set the window style to alpha appearance
private void button4_Click(object sender, EventArgs e)
{
    SetWindowLong(Handle, GWL_EXSTYLE, GetWindowLong(Handle, GWL_EXSTYLE) ^ WS_EX_LAYERED);
    SetLayeredWindowAttributes(Handle, 0, 128, LWA_ALPHA);
}
Cortney answered 1/9, 2009 at 6:20 Comment(3)
Thanks, it worked. But is there a tool from which i get to see all these apis and their description ???Blandishments
There might be but I can't recall anyone right now. I use google for this BTW :)Cortney
pinvoke.net is a good resource for this stuff. Plus there are a bunch of tools, some free, some commercial that will generate P/Invoke signatures for you. PInvoke.NET is a free plug-in available from the above site plus there's pinvoker.net tooValdivia

© 2022 - 2024 — McMap. All rights reserved.