Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Draw semi transparent overlay image all over the windows form having some controls such that all its child controls should be visible but you can't click them. It should just like we see some things through some semi transparent black mirror.

I have tried using Transparent control. That is sub-classing Panel control and drawing image over that control, however all the controls are fully visible.

share|improve this question
1  
wpf or winforms. – Will Dec 21 '10 at 19:45

2 Answers

This is going to require another form that you display on top of the existing one. Its Opacity property can create the intended effect. Add a new class to your project and paste the code shown below. Call the Close() method on the returned Form to remove the effect again.

using System;
using System.Drawing;
using System.Windows.Forms;

static class Utils {
    public static Form Plexiglass(Form tocover) {
        var frm = new Form();
        frm.BackColor = Color.DarkGray;
        frm.Opacity = 0.30;
        frm.FormBorderStyle = FormBorderStyle.None;
        frm.ControlBox = false;
        frm.ShowInTaskbar = false;
        frm.StartPosition = FormStartPosition.Manual;
        frm.AutoScaleMode = AutoScaleMode.None;
        frm.Location = tocover.Location;
        frm.Size = tocover.Size;
        frm.Show(tocover);
        return frm;
    }
}

You'll see some artifacts when you minimize the form with the taskbar button.

share|improve this answer
its working. Thanks Mohammed – Mohammed Laikh Dec 23 '10 at 20:02
How exactly is this class called? – Teifi Mar 17 at 17:28
Looks like it's Utils.Plexiglass(this); ... ALT+F4 will close it. Any way to get black text on-top of this window, e.g. "Please Wait"? (I just tripled the opacity and it helped with a dynamic label I added to this overlay). – PeterX Apr 12 at 6:52

Create a layered window that is kept on top of your primary form and synced with its location. You can alter the layered window's alpha using a 32-bit RGBA image in order to get your desired effect.

There's a decent codeproject article showing you how to do this here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.