启用/禁用GUI控件会禁用我的OnMouseWheel覆盖

时间:2011-05-29 15:10:39

标签: c# winforms winapi forms controls

在我的项目中,我使用WS_EX_TRANSPARENT标志动态定义半透明表单是否应该接收用户鼠标事件。

为了使其更直观,我添加了代码以在启用WS_EX_TRANSPARENT时禁用所有可见控件,但是,当调用此代码时,它似乎“锁定”我的OnMouseWheel覆盖。

以下是我的代码。我应该指出,如果我注释掉'EnableGUIControls'方法,这段代码工作正常 - 事实上,如果我在'EnableGUIControls'方法中注释掉任何一行它完美地工作 - 所以它与禁用所有控件有关。

从表单中删除焦点并重新激活它可以解决问题,但是手动调用Form.Activte()不会。

我正在考虑禁用所有可见控件以某种方式禁用父级?有谁知道发生了什么事?

        private void SetTransparentToMouse(bool should_be_transparent)
    {
        IntPtr flags = GetWindowLong(this.Handle, GWL_EXSTYLE);

        if (((flags.ToInt64() & WS_EX_TRANSPARENT.ToInt64()) > 0) == should_be_transparent)
        {
            return;
        }
        else
        {
            SwapTransparent();
            EnableGUIControls(!should_be_transparent);
        }
    }

    private void SwapTransparent()
    {
        IntPtr flags = new IntPtr(GetWindowLong(this.Handle, GWL_EXSTYLE).ToInt64() ^ WS_EX_TRANSPARENT.ToInt64());
        SetWindowLong(this.Handle, GWL_EXSTYLE, flags);
    }

            protected override void OnKeyUp(KeyEventArgs e)
    {
        if (!e.Alt)
        {
            SetTransparentToMouse(default_mouse_transparency);
        }

        base.OnKeyUp(e);
    }

            protected override void OnKeyDown(System.Windows.Forms.KeyEventArgs e)
    {
        if (e.Alt)
        {
            SetTransparentToMouse(!default_mouse_transparency);
        }

        base.OnKeyDown(e);
    }

    //Commenting out the call to this, or any line within this resolves the problem!:
        void EnableGUIControls(bool enabled)
    {
        this.Button_Opacity.Enabled = enabled;
        this.Button_Close.Enabled = enabled;
        this.Button_Minimize.Enabled = enabled;
        this.Button_Open.Enabled = enabled;
        this.Button_Pan.Enabled = enabled;
        this.Button_Sizemode.Enabled = enabled;
        this.Button_Zoom.Enabled = enabled;
    }

1 个答案:

答案 0 :(得分:1)

当禁用所有控件时,没有任何聚焦控件可以捕获鼠标消息并将其重定向到表单。尝试使用Form.Focus()而不是Form.Activate()。