--- title: "Brushes and Filled Shapes in GDI+" ms.date: "03/30/2017" dev_langs: - "csharp" - "vb" helpviewer_keywords: - "brushes [Windows Forms], GDI+" - "filled shapes [Windows Forms], GDI+" - "shapes [Windows Forms], GDI+" - "GDI+, brushes" - "GDI+, filled shapes" - "gradient brushes" - "brushes [Windows Forms], gradient" ms.assetid: e863e2a7-0294-4130-99b6-f1ea3201e7cd --- # Brushes and Filled Shapes in GDI+ A closed shape, such as a rectangle or an ellipse, consists of an outline and an interior. The outline is drawn with a pen and the interior is filled with a brush. GDI+ provides several brush classes for filling the interiors of closed shapes: , , , , and . All of these classes inherit from the class. The following illustration shows a rectangle filled with a solid brush and an ellipse filled with a hatch brush. ![Filled Shapes](./media/aboutgdip02-art17.gif "Aboutgdip02_art17") ## Solid Brushes To fill a closed shape, you need an instance of the class and a . The instance of the class provides methods, such as and , and the stores attributes of the fill, such as color and pattern. The is passed as one of the arguments to the fill method. The following code example shows how to fill an ellipse with a solid red color. [!code-csharp[LinesCurvesAndShapes#121](~/samples/snippets/csharp/VS_Snippets_Winforms/LinesCurvesAndShapes/CS/Class1.cs#121)] [!code-vb[LinesCurvesAndShapes#121](~/samples/snippets/visualbasic/VS_Snippets_Winforms/LinesCurvesAndShapes/VB/Class1.vb#121)] > [!NOTE] > In the preceding example, the brush is of type , which inherits from . ## Hatch Brushes When you fill a shape with a hatch brush, you specify a foreground color, a background color, and a hatch style. The foreground color is the color of the hatching. [!code-csharp[LinesCurvesAndShapes#122](~/samples/snippets/csharp/VS_Snippets_Winforms/LinesCurvesAndShapes/CS/Class1.cs#122)] [!code-vb[LinesCurvesAndShapes#122](~/samples/snippets/visualbasic/VS_Snippets_Winforms/LinesCurvesAndShapes/VB/Class1.vb#122)] GDI+ provides more than 50 hatch styles; the three styles shown in the following illustration are , , and . ![Filled Shapes](./media/aboutgdip02-art18.gif "Aboutgdip02_art18") ## Texture Brushes With a texture brush, you can fill a shape with a pattern stored in a bitmap. For example, suppose the following picture is stored in a disk file named `MyTexture.bmp`. ![Filled Shape](./media/aboutgdip02-art19.gif "Aboutgdip02_Art19") The following code example shows how to fill an ellipse by repeating the picture stored in `MyTexture.bmp`. [!code-csharp[LinesCurvesAndShapes#123](~/samples/snippets/csharp/VS_Snippets_Winforms/LinesCurvesAndShapes/CS/Class1.cs#123)] [!code-vb[LinesCurvesAndShapes#123](~/samples/snippets/visualbasic/VS_Snippets_Winforms/LinesCurvesAndShapes/VB/Class1.vb#123)] The following illustration shows the filled ellipse. ![Filled Shape](./media/aboutgdip02-art20.gif "AboutGdip02_Art20") ## Gradient Brushes GDI+ provides two kinds of gradient brushes: linear and path. You can use a linear gradient brush to fill a shape with color that changes gradually as you move across the shape horizontally, vertically, or diagonally. The following code example shows how to fill an ellipse with a horizontal gradient brush that changes from blue to green as you move from the left edge of the ellipse to the right edge. [!code-csharp[LinesCurvesAndShapes#124](~/samples/snippets/csharp/VS_Snippets_Winforms/LinesCurvesAndShapes/CS/Class1.cs#124)] [!code-vb[LinesCurvesAndShapes#124](~/samples/snippets/visualbasic/VS_Snippets_Winforms/LinesCurvesAndShapes/VB/Class1.vb#124)] The following illustration shows the filled ellipse. ![Filled Shape](./media/aboutgdip02-art21.gif "AboutGdip02_Art21") A path gradient brush can be configured to change color as you move from the center of a shape toward the edge. ![Filled Shape](./media/aboutgdip02-art22.gif "AboutGdip02_Art22") Path gradient brushes are quite flexible. The gradient brush used to fill the triangle in the following illustration changes gradually from red at the center to each of three different colors at the vertices. ![Filled Shape](./media/aboutgdip02-art23.gif "AboutGdip02_Art23") ## See also - - - - - [Lines, Curves, and Shapes](lines-curves-and-shapes.md) - [How to: Draw a Filled Rectangle on a Windows Form](how-to-draw-a-filled-rectangle-on-a-windows-form.md) - [How to: Draw a Filled Ellipse on a Windows Form](how-to-draw-a-filled-ellipse-on-a-windows-form.md)