I've been messing around with this for a couple of months and I'm still not certain of what I can do to accomplish want a want.

I need to build a real device, that is, that exists in the real world and has a screen on it. So far, I have done it in a few different ways, like, using panels to simulate lays, etc. Now I'm currently building each control using code.

The thing is, is there any better way to draw this screen? How can I dim it, make it darker or clearer? I keep getting a transparent background behind the panels after I dispose them. Is there any way to remove this ghosting effect?

Thanks in advance!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Basically you want a overlay that's on top of your form.

The open source project ObjectListView implements a similar overlay. I hacked a little bit and it works.
You can download the solution at:
https://github.com/hamxiaoz/Misc/tree/master/DimScreen

Build the solution and drag the trackbar you can see the form is dimmed. And you can click through the overlay. I think that's what you want.

link|improve this answer
Isn't that my answer, just expanded upon?? – James Johnson Oct 21 '11 at 22:32
Sure the concept is the same but I think the most important stuff is how to implement it (windows message/window creation parameters/pinvoke etc) – AZ. Oct 21 '11 at 22:56
That is P-E-R-F-E-C-T! – henriquesirot Oct 22 '11 at 11:53
feedback

The least invasive way would probably be a black or grey semi-transparent overlay. Just keep adjusting the transparency as needed until it looks the way you want it to.

I don't know if this works or not, but it should at least illustrate the technique:

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;
    }
}
link|improve this answer
the other thing is... it has a touchscreen, so that would have to be click-through... – henriquesirot Oct 21 '11 at 19:39
I'm sure there's a way to make that work, although I don't have the answer right at this moment. – James Johnson Oct 21 '11 at 19:41
check my updated answer, it should work for you. – AZ. Oct 21 '11 at 22:23
feedback

Your Answer

 
or
required, but never shown

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