For quite sometime now I have been trying to accomplish some sort of form which allows transparency with PNG images.
I am working in C# and I was able to find a nice project that achieved this via per pixel alpha blend and by changing the image to a bitmap and using an alpha layer to only show parts which aren't transparent, which is then updated with UpdateLayeredWindow.
Here is the project: http://www.codeproject.com/Articles/1822/Per-Pixel-Alpha-Blend-in-C
I was able to implement the code from the aforementioned project but due to the create parameters which is set the form is basically made invisible and only the image is shown. And when I remove the create parameters the effect is not applied.
But I am wanting to be able to apply this to my form background. For my form I have set the form border style to none and applied a background image.
How can I apply this technique to my form background and still be able to add controls which will not be affected?
windows-forms? It's not clear. - heltonbiker