LineCap Demo : LineCaps « 2D « VB.Net






LineCap Demo

LineCap Demo
Imports System
Imports System.Windows.Forms
Imports System.Drawing.Text
Imports System.Drawing

Public Class MainClass
    
    Shared Sub Main(ByVal args As String())
        Dim myform As Form = New Form1()
        Application.Run(myform)
    End Sub
End Class


Public Class Form1
    Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
        Dim x As Integer = 5
        Dim y As Integer = 10
        Dim the_pen As New Pen(Color.Black, 20)

        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.AnchorMask)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.ArrowAnchor)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.DiamondAnchor)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.Flat)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.NoAnchor)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.Round)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.RoundAnchor)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.Square)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.SquareAnchor)
        DrawSample(e.Graphics, x, y, Drawing2D.LineCap.Triangle)
    End Sub

    Private Sub DrawSample(ByVal gr As Graphics, ByRef x As Integer, ByRef y As Integer, ByVal style As Drawing2D.LineCap)
        Dim the_pen As New Pen(Color.Black, 20)
        the_pen.EndCap = style
        gr.DrawString(style.ToString, Me.Font, Brushes.Black, x, y - 5)
        gr.DrawLine(the_pen, x + 100, y, x + 150, y)

        y += 50
        If y > Me.ClientRectangle.Height Then
            x += 200
            y = 80
        End If
    End Sub
    
End Class


<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.SuspendLayout()
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(564, 209)
        Me.Name = "Form1"
        Me.Text = "Title"
        Me.ResumeLayout(False)

    End Sub

End Class

           
       








Related examples in the same category

1.Custom Line Cap ConstructionCustom Line Cap Construction
2.Custom Line CapsCustom Line Caps
3.LineCaps DemoLineCaps Demo