I am using C# windows form
this code creates a transparent color named "newColor"
Color newColor = Color.FromArgb(100, Color.Red);
and here is the code I where I use the Brush
e.Graphics.FillEllipse(Brushes.newColor, mpo.X, mpo.Y, 2, 2);
but it's not working, and displays:
Error 1 'System.Drawing.Brushes' does not contain a definition for 'newColor
how to use a C# brush with a transparent color?