<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.2.26159.112" />

System.Drawing.Drawing2D.HatchBrush

public sealed class HatchBrush : Brush
Defines a rectangular brush with a hatch style, a foreground color, and a background color. This class cannot be inherited.
namespace System.Drawing.Drawing2D { public sealed class HatchBrush : Brush { public Color BackgroundColor { get; } public Color ForegroundColor { get; } public HatchStyle HatchStyle { get; } public HatchBrush(HatchStyle hatchstyle, Color foreColor); public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor); } }