Modifying opacity of any window from C#(从 C# 修改任何窗口的不透明度)
问题描述
是否可以从 C# 修改所有打开的窗口的不透明度.我用谷歌搜索最小化窗口,我知道它可以通过 pInvoke 调用.它甚至奏效了.同样是否可以从 C# 更改所有打开的窗口的不透明度?
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#?
另外,我不喜欢 MFC 的东西.还有任何工具可以知道 dll 中公开的 api 列表吗?
Also, i am not in to MFC stuffs. Still is there any tools to know the list of apis exposed in a dll?
推荐答案
你可以使用SetLayeredWindowAttributes API 这样做.
检查此 API 的 pInvoke 版本.
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);
}
这篇关于从 C# 修改任何窗口的不透明度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 C# 修改任何窗口的不透明度


基础教程推荐
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01