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.