Change Pen width by setting the PageUnit : PageUnit « 2D Graphics « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » 2D Graphics » PageUnit 
17.75.2.Change Pen width by setting the PageUnit
Change Pen width by setting the PageUnit
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class PenWidth
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1
    Private Sub RadioButton_CheckedChanged_
          ByVal sender As System.Object, _
          ByVal e As System.EventArgs_
          Handles UsePixels.CheckedChanged, _
          UseMillimeters.CheckedChanged, _
          UseInches.CheckedChanged
        ' ----- Change the scaling system.
        Me.Refresh()
    End Sub

    Private Sub Form1_Paint(ByVal sender As Object, _
          ByVal e As System.Windows.Forms.PaintEventArgs_
          Handles Me.Paint
        Dim canvas As Graphics

        canvas = e.Graphics
        If (UseMillimeters.Checked = TrueThen
            canvas.PageUnit = GraphicsUnit.Millimeter
        ElseIf (UseInches.Checked = TrueThen
            canvas.PageUnit = GraphicsUnit.Inch
        Else
            canvas.PageUnit = GraphicsUnit.Pixel
        End If

        canvas.DrawLine(New Pen(Color.Red, 1)11,200100)

    End Sub

End Class


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

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected 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.UsePixels = New System.Windows.Forms.RadioButton
        Me.UseMillimeters = New System.Windows.Forms.RadioButton
        Me.UseInches = New System.Windows.Forms.RadioButton
        Me.SuspendLayout()
        '
        'UsePixels
        '
        Me.UsePixels.AutoSize = True
        Me.UsePixels.Checked = True
        Me.UsePixels.Location = New System.Drawing.Point(24128)
        Me.UsePixels.Name = "UsePixels"
        Me.UsePixels.Size = New System.Drawing.Size(5217)
        Me.UsePixels.TabIndex = 0
        Me.UsePixels.TabStop = True
        Me.UsePixels.Text = "Pixels"
        Me.UsePixels.UseVisualStyleBackColor = True
        '
        'UseMillimeters
        '
        Me.UseMillimeters.AutoSize = True
        Me.UseMillimeters.Location = New System.Drawing.Point(24152)
        Me.UseMillimeters.Name = "UseMillimeters"
        Me.UseMillimeters.Size = New System.Drawing.Size(7317)
        Me.UseMillimeters.TabIndex = 1
        Me.UseMillimeters.Text = "Millimeters"
        Me.UseMillimeters.UseVisualStyleBackColor = True
        '
        'UseInches
        '
        Me.UseInches.AutoSize = True
        Me.UseInches.Location = New System.Drawing.Point(24176)
        Me.UseInches.Name = "UseInches"
        Me.UseInches.Size = New System.Drawing.Size(5717)
        Me.UseInches.TabIndex = 2
        Me.UseInches.Text = "Inches"
        Me.UseInches.UseVisualStyleBackColor = True
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(513384)
        Me.Controls.Add(Me.UseInches)
        Me.Controls.Add(Me.UseMillimeters)
        Me.Controls.Add(Me.UsePixels)
        Me.Name = "Form1"
        Me.Text = "Drawing Lines One Pixel Wide Regardless of Scaling"
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents UsePixels As System.Windows.Forms.RadioButton
    Friend WithEvents UseMillimeters As System.Windows.Forms.RadioButton
    Friend WithEvents UseInches As System.Windows.Forms.RadioButton

End Class
17.75.PageUnit
17.75.1.Change PageUnitChange PageUnit
17.75.2.Change Pen width by setting the PageUnitChange Pen width by setting the PageUnit
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.