Aero: How to draw solid (opaque) colors on glass?

Seems to work OK for me. With the lack of a full code example I’m assuming you’ve got your compositing mode wrong. public void RenderGdiPlus() { List<string> colors = new List<string>(new string[] { “000000”, “ff0000”, “00ff00”, “0000ff”, “ffffff” }); List<string> alphas = new List<string>(new string[] { “00”, “01”, “40”, “80”, “c0”, “fe”, “ff” }); Bitmap … Read more

tech