Mega Code Archive

 
Categories / VB.Net Tutorial / 2D Graphics
 

Draw path

Imports System.Drawing Imports System.Drawing.Drawing2D Imports System.Windows.Forms public class DrawPath    public Shared Sub Main         Application.Run(New Form1)    End Sub End class public class Form1   Inherits System.Windows.Forms.Form   Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)         Dim g As Graphics = Me.CreateGraphics()         g.Clear(Me.BackColor)         Dim redPen As New Pen(Brushes.Red, 3)         Dim rect As New Rectangle(70, 15, 50, 50)         Dim path As New GraphicsPath         path.AddArc(20, 150, 200, 100, 0, 180)         path.AddLine(20, 40, 220, 190)         path.AddLine(20, 220, 320, 20)         path.AddRectangle(rect)         path.AddEllipse(250, 200, 50, 50)         g.DrawPath(redPen, path)         ' Dispose         g.Dispose()   End Sub   Public Sub New()         MyBase.New()     Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)     Me.ClientSize = New System.Drawing.Size(292, 273)     Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen   End Sub End Class