Unless there's something I'm not aware of, there's no facility in GDI for accomplishing this. Are you looking for some way to change the relative alpha values of all of the colors used in drawing in a GDI context? I don't think anything like that exists.
A better idea might be to cache your colors in your own custom repository, then when you want to set a global (or scope-wide) alpha value, you can use that to manipulate those colors. Obviously if I had more information I could probably come up with a solution that's more appropriate to your environment, but that's all I can offer just based on what's provided in the question.
Edit
After reading your comment, my suggestion would be to turn your painting code into a function that takes a Graphics
object, a location/size (and whatever else is appropriate, if it isn't already this way) and a transparency float (ranging from 0 - 1.0). You can then create your colors in your function based upon the supplied transparency value.