I'm building an app in which I have to show a semitransparent form. I need to draw some text on that form too, to let the user know some info. However, the strings I draw are also semitransparent and are difficult to read. I was wondering if there is a way to draw a non transparent string into a semitransparent form. I'm using .NET 4.0, C# and WinForms technology. For the moment I use the DrawString method on the Graphics form, but using a Label had no effect at all tho. Browsing StackOverflow I found this How do I make my form transparent, but what I draw on it not? but it refers to WPF, and I'm using plain old WinForms.
Cheers.