I am programming in windows visual C++, and I am trying to make a specific color transparent. I have asked this question before but all I got was answer including C code, not C++/CLI. P.s This is a windows form application... I think the previous code I received as an answer was similar to this.
Color pixelColor = myBitmap.GetPixel(1, 1);
but that is C code... not C++/CLI. How do you make a PictureBoxes image have a transparent color in it?