gpt4 book ai didi

c# - 我不能在 C# 中通过句柄设置窗口的透明度吗?

转载 作者:行者123 更新时间:2023-11-30 14:04:44 24 4
gpt4 key购买 nike

我正在尝试设置所有窗口的透明度。我有以下代码。

public partial class Form1 : Form
{
[DllImport("user32.dll")]
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

[DllImport("user32.dll")]
static extern int GetWindowLong(IntPtr hWnd, int nIndex);

[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 Form1()
{
InitializeComponent();
this.Load += new EventHandler(Form1_Load);
}

private void Form1_Load(object sender, EventArgs e)
{
Process[] processlist = Process.GetProcesses();

foreach (Process theprocess in processlist)
{
SetWindowLong(theprocess.Handle, GWL_EXSTYLE,
GetWindowLong(theprocess.Handle, GWL_EXSTYLE) ^ WS_EX_LAYERED);
SetLayeredWindowAttributes(theprocess.Handle, 0, 128, LWA_ALPHA);
}

}
}

当我执行代码时没有任何反应。

怎么了??

最佳答案

SetWindowLong 获取窗口句柄 (hWnd),但您传递给它的是进程句柄。更改所有实例

theprocess.Handle

theProcess.MainWindowHandle

更改后,它可以在我测试过的 Windows XP 机器上运行。现在我将不得不修改代码以使窗口恢复正常 ;) 幸运的是,Visual Studio 2010 窗口未受影响。

关于c# - 我不能在 C# 中通过句柄设置窗口的透明度吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1270316/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com