3

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

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);
        }

    }
}

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

怎么了??

4

3 回答 3

5

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

theprocess.Handle

theProcess.MainWindowHandle

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

于 2009-08-13T09:03:34.850 回答
2

这部分代码:    ^ WS_EX_LAYERED   翻转 WS_EX_LAYERED 位,

我想你想要:    | WS_EX_LAYERED

于 2009-08-13T09:00:10.380 回答
1

您是否尝试过设置不透明度

this.Opacity = 0.50;
于 2009-08-13T06:30:55.670 回答