windigo icon indicating copy to clipboard operation
windigo copied to clipboard

How to I enable "clickthrough" in windigo?

Open offles2 opened this issue 1 year ago • 0 comments

If I have a Window, I need to be able to "clickthrough" it, such that mouse actions affects the background Window like as if this Window does not exist.

In WPF I achieve this via :

       protected override System.Windows.Forms.CreateParams CreateParams
        {
            get
            {
                CreateParams cp = base.CreateParams;
                cp.ExStyle = cp.ExStyle | WS_EX_TRANSPARENT;
                return cp;
            }
        }

offles2 avatar Jan 10 '24 12:01 offles2