Set A Transparent Color
- by Ngu Soon Hui
I have a Color, and I have a method that should return a more "transparent" version of that color. I tried the following method:
public static Color SetTransparency(int A, Color color)
{
return Color.FromArgb(A, Color.R, Color.G, Color.B);
}
but for some reason, no matter what the A is, the returned Color's transparency level just won't change.
Any idea?