I'm using the Brushes in my wpf application as shown below, what I want to do is to control the colour intensity. So as shown below the brush is set to Green colour. But what I want to do is to control the intensity of the green colour, so that sometimes it can be lighter or thicker, depending on the value I pass it. so if anyone could please advise.
private readonly Pen P = new Pen(Brushes.Green, 6);
You could create your own brush:
You can then define the color exactly by passing alpha, red, green and blue components to
Color.FromARGB
.