I am trying to create an image in C# using the Drawing classes. The image has a grid and I want to create a gradient header similar to this image.
Can I get some guidance on how to do this? I tried using the LinearGradientBrush but I am struggling to get the same header look as it is in the image above.

LinearGradientBrush, pass the full bounds and two semi-transparent white colors (A < 100)..FillRectangle(x, y, width, height / 2);.