MultiLine Text Manual Layout : Text Layout « 2D « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » 2D » Text LayoutScreenshots 
MultiLine Text Manual Layout
MultiLine Text Manual Layout

Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Globalization
Imports System.Text
Imports System.Collections

Public Class MainClass
    Shared Sub Main()
        Dim myform As Form = New MultiLineTextForm()
        Application.Run(myform)
    End Sub
End Class

Public Class MultiLineTextForm
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        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.
    Friend WithEvents groupBox2 As System.Windows.Forms.GroupBox
    Friend WithEvents manualPanel As System.Windows.Forms.Panel
    Friend WithEvents automaticPanel As System.Windows.Forms.Panel
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.groupBox2 = New System.Windows.Forms.GroupBox()
        Me.manualPanel = New System.Windows.Forms.Panel()
        Me.automaticPanel = New System.Windows.Forms.Panel()
        Me.groupBox2.SuspendLayout()
        Me.SuspendLayout()
        '
        'groupBox2
        '
        Me.groupBox2.Controls.AddRange(New System.Windows.Forms.Control() {Me.manualPanel})
        Me.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill
        Me.groupBox2.Font = New System.Drawing.Font("Microsoft Sans Serif"18.0!)
        Me.groupBox2.Location = New System.Drawing.Point(1550)
        Me.groupBox2.Name = "groupBox2"
        Me.groupBox2.Size = New System.Drawing.Size(137266)
        Me.groupBox2.TabIndex = 5
        Me.groupBox2.TabStop = False
        Me.groupBox2.Text = "Manual"
        '
        'manualPanel
        '
        Me.manualPanel.BackColor = System.Drawing.Color.White
        Me.manualPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
        Me.manualPanel.Dock = System.Windows.Forms.DockStyle.Fill
        Me.manualPanel.Font = New System.Drawing.Font("Microsoft Sans Serif"18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.manualPanel.Location = New System.Drawing.Point(331)
        Me.manualPanel.Name = "manualPanel"
        Me.manualPanel.Size = New System.Drawing.Size(131232)
        Me.manualPanel.TabIndex = 0
       
        'MultiLineTextForm
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(292266)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.groupBox2})
        Me.Name = "MultiLineTextForm"
        Me.Text = "MultiLineTextForm"
        Me.groupBox2.ResumeLayout(False)
        Me.ResumeLayout(False)

    End Sub

#End Region


    Dim As String = "Line 1" & vbCrLf & "Line 2" & vbCrLf & "Line 3"



    Private Sub manualPanel_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgsHandles manualPanel.Paint
        Dim As Graphics = e.Graphics
        Dim As Single = 0
        Dim arrPens As Pen() = New Pen() {Pens.Red, Pens.Green, Pens.Blue}
        Dim line As String
        For Each line In s.Split(vbCrLf)
            Dim width As Single = manualPanel.ClientRectangle.Width
            Dim height As Single = manualPanel.ClientRectangle.Height - y
            Dim layoutRect As RectangleF = New RectangleF(0, y, width, height)
            Dim format As StringFormat = New StringFormat(StringFormatFlags.NoWrap Or StringFormatFlags.DisplayFormatControl)
            g.DrawString(line, Me.Font, Brushes.Black, layoutRect, format)
            Dim size As SizeF = g.MeasureString(line, Me.Font, layoutRect.Size, format)
            g.DrawRectangle(arrPens(CInt(y / Me.Font.GetHeight(g)))0, y, size.Width, size.Height)
            y = y + Me.Font.GetHeight(g)
        Next
    End Sub

    Private Sub manualPanel_Layout(ByVal sender As Object, ByVal e As System.Windows.Forms.LayoutEventArgsHandles manualPanel.Layout
  
        Me.manualPanel.Refresh()
    End Sub
End Class

           
       
Related examples in the same category
1.MultiLine Text Automatically Layout DemoMultiLine Text Automatically Layout Demo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.