Using TabControl to display various font settings : TabControl « GUI « 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 » GUI » TabControl 
14.37.4.Using TabControl to display various font settings
Using TabControl to display various font settings
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Drawing.Drawing2D

public class FormTabControl
   public Shared Sub Main
        Application.Run(New FrmTabs)
   End Sub
End class


Public Class FrmTabs
   Inherits 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
   ' output label reflects text changes
   Friend WithEvents lblDisplay As Label

   ' table control containing table pages tbpColor,
   ' tbpSize, tbpMessage and tbpAbout
   Friend WithEvents tbcTextOptions As TabControl

   ' table page containing color options
   Friend WithEvents tbpColor As TabPage
   Friend WithEvents radBlack As RadioButton
   Friend WithEvents radRed As RadioButton
   Friend WithEvents radGreen As RadioButton

   ' table page containing font size options
   Friend WithEvents tbpSize As TabPage
   Friend WithEvents radSize12 As RadioButton
   Friend WithEvents radSize16 As RadioButton
   Friend WithEvents radSize20 As RadioButton

   ' table page containing text display options
   Friend WithEvents tbpMessage As TabPage
   Friend WithEvents radHello As RadioButton
   Friend WithEvents radGoodbye As RadioButton

   ' table page containing about message
   Friend WithEvents tbpAbout As TabPage
   Friend WithEvents lblMessage As Label

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

   '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.radSize12 = New System.Windows.Forms.RadioButton()
      Me.radSize20 = New System.Windows.Forms.RadioButton()
      Me.radHello = New System.Windows.Forms.RadioButton()
      Me.lblDisplay = New System.Windows.Forms.Label()
      Me.tbpMessage = New System.Windows.Forms.TabPage()
      Me.radGoodbye = New System.Windows.Forms.RadioButton()
      Me.tbpAbout = New System.Windows.Forms.TabPage()
      Me.lblMessage = New System.Windows.Forms.Label()
      Me.radSize16 = New System.Windows.Forms.RadioButton()
      Me.tbpColor = New System.Windows.Forms.TabPage()
      Me.radGreen = New System.Windows.Forms.RadioButton()
      Me.radRed = New System.Windows.Forms.RadioButton()
      Me.radBlack = New System.Windows.Forms.RadioButton()
      Me.tbcTextOptions = New System.Windows.Forms.TabControl()
      Me.tbpSize = New System.Windows.Forms.TabPage()
      Me.tbpMessage.SuspendLayout()
      Me.tbpAbout.SuspendLayout()
      Me.tbpColor.SuspendLayout()
      Me.tbcTextOptions.SuspendLayout()
      Me.tbpSize.SuspendLayout()
      Me.SuspendLayout()
      '
      'radSize12
      '
      Me.radSize12.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radSize12.Location = New System.Drawing.Point(1624)
      Me.radSize12.Name = "radSize12"
      Me.radSize12.TabIndex = 0
      Me.radSize12.Text = "12 point"
      '
      'radSize20
      '
      Me.radSize20.Location = New System.Drawing.Point(16104)
      Me.radSize20.Name = "radSize20"
      Me.radSize20.TabIndex = 2
      Me.radSize20.Text = "20 point"
      '
      'radHello
      '
      Me.radHello.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radHello.Location = New System.Drawing.Point(1624)
      Me.radHello.Name = "radHello"
      Me.radHello.TabIndex = 0
      Me.radHello.Text = "Hello!"
      '
      'lblDisplay
      '
      Me.lblDisplay.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.lblDisplay.Location = New System.Drawing.Point(16184)
      Me.lblDisplay.Name = "lblDisplay"
      Me.lblDisplay.Size = New System.Drawing.Size(27240)
      Me.lblDisplay.TabIndex = 1
      Me.lblDisplay.Text = "Hello!"
      Me.lblDisplay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
      '
      'tbpMessage
      '
      Me.tbpMessage.Controls.AddRange(New System.Windows.Forms.Control() {Me.radGoodbye, Me.radHello})
      Me.tbpMessage.Location = New System.Drawing.Point(422)
      Me.tbpMessage.Name = "tbpMessage"
      Me.tbpMessage.TabIndex = 2
      Me.tbpMessage.Text = "Message"
      '
      'radGoodbye
      '
      Me.radGoodbye.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radGoodbye.Location = New System.Drawing.Point(1664)
      Me.radGoodbye.Name = "radGoodbye"
      Me.radGoodbye.TabIndex = 1
      Me.radGoodbye.Text = "Goodbye!"
      '
      'tbpAbout
      '
      Me.tbpAbout.Controls.AddRange(New System.Windows.Forms.Control() {Me.lblMessage})
      Me.tbpAbout.Location = New System.Drawing.Point(422)
      Me.tbpAbout.Name = "tbpAbout"
      Me.tbpAbout.TabIndex = 3
      Me.tbpAbout.Text = "About"
      '
      'lblMessage
      '
      Me.lblMessage.Font = New System.Drawing.Font("Microsoft Sans Serif"14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.lblMessage.Location = New System.Drawing.Point(1616)
      Me.lblMessage.Name = "lblMessage"
      Me.lblMessage.Size = New System.Drawing.Size(248104)
      Me.lblMessage.TabIndex = 0
      Me.lblMessage.Text = "Tabs are used to organize controls and conserve screen space."
      '
      'radSize16
      '
      Me.radSize16.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radSize16.Location = New System.Drawing.Point(1664)
      Me.radSize16.Name = "radSize16"
      Me.radSize16.TabIndex = 1
      Me.radSize16.Text = "16 point"
      '
      'tbpColor
      '
      Me.tbpColor.Controls.AddRange(New System.Windows.Forms.Control() {Me.radGreen, Me.radRed, Me.radBlack})
      Me.tbpColor.Location = New System.Drawing.Point(422)
      Me.tbpColor.Name = "tbpColor"
      Me.tbpColor.TabIndex = 0
      Me.tbpColor.Text = "Color"
      '
      'radGreen
      '
      Me.radGreen.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radGreen.Location = New System.Drawing.Point(16104)
      Me.radGreen.Name = "radGreen"
      Me.radGreen.TabIndex = 2
      Me.radGreen.Text = "Green"
      '
      'radRed
      '
      Me.radRed.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radRed.Location = New System.Drawing.Point(1664)
      Me.radRed.Name = "radRed"
      Me.radRed.TabIndex = 1
      Me.radRed.Text = "Red"
      '
      'radBlack
      '
      Me.radBlack.Font = New System.Drawing.Font("Microsoft Sans Serif"9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
      Me.radBlack.Location = New System.Drawing.Point(1624)
      Me.radBlack.Name = "radBlack"
      Me.radBlack.TabIndex = 0
      Me.radBlack.Text = "Black"
      '
      'tbcTextOptions
      '
      Me.tbcTextOptions.Controls.AddRange(New System.Windows.Forms.Control() {Me.tbpColor, Me.tbpSize, Me.tbpMessage, Me.tbpAbout})
      Me.tbcTextOptions.Location = New System.Drawing.Point(88)
      Me.tbcTextOptions.Name = "tbcTextOptions"
      Me.tbcTextOptions.SelectedIndex = 0
      Me.tbcTextOptions.Size = New System.Drawing.Size(280168)
      Me.tbcTextOptions.TabIndex = 0
      '
      'tbpSize
      '
      Me.tbpSize.Controls.AddRange(New System.Windows.Forms.Control() {Me.radSize20, Me.radSize16, Me.radSize12})
      Me.tbpSize.Location = New System.Drawing.Point(422)
      Me.tbpSize.Name = "tbpSize"
      Me.tbpSize.TabIndex = 1
      Me.tbpSize.Text = "Size"
      '
      'FrmTabs
      '
      Me.AutoScaleBaseSize = New System.Drawing.Size(513)
      Me.ClientSize = New System.Drawing.Size(292229)
      Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.lblDisplay, Me.tbcTextOptions})
      Me.Name = "FrmTabs"
      Me.Text = "Using Tabs"
      Me.tbpMessage.ResumeLayout(False)
      Me.tbpAbout.ResumeLayout(False)
      Me.tbpColor.ResumeLayout(False)
      Me.tbcTextOptions.ResumeLayout(False)
      Me.tbpSize.ResumeLayout(False)
      Me.ResumeLayout(False)

   End Sub

#End Region

   ' event handler for black color radio button
   Private Sub radBlack_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radBlack.CheckedChanged

      lblDisplay.ForeColor = Color.Black
   End Sub 
   
   Private Sub radRed_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radRed.CheckedChanged

      lblDisplay.ForeColor = Color.Red
   End Sub 
   
   Private Sub radGreen_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radGreen.CheckedChanged

      lblDisplay.ForeColor = Color.Green
   End Sub 
   
   Private Sub radSize12_CheckedChanged_
      ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radSize12.CheckedChanged

      lblDisplay.Font = New Font("Microsoft Sans Serif"12)
   End Sub 

   Private Sub radSize16_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radSize16.CheckedChanged

      lblDisplay.Font = New Font("Microsoft Sans Serif"16)
   End Sub 

   Private Sub radSize20_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radSize20.CheckedChanged

      lblDisplay.Font = New Font("Microsoft Sans Serif"20)
   End Sub 

   Private Sub radHello_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radHello.CheckedChanged

      lblDisplay.Text = "Microsoft Sans Serif"
   End Sub
   
   Private Sub radGoodbye_CheckedChanged _
      (ByVal sender As System.Object, ByVal e As System.EventArgs_
      Handles radGoodbye.CheckedChanged

      lblDisplay.Text = "Font Size 20"
   End Sub 

End Class
14.37.TabControl
14.37.1.Tab ControlTab Control
14.37.2.TabControl and TabPagesTabControl and TabPages
14.37.3.Add new TabAdd new Tab
14.37.4.Using TabControl to display various font settingsUsing TabControl to display various font settings
14.37.5.Put RadioButtons to a Tab ControlPut RadioButtons to a Tab Control
14.37.6.Custom TabCustom Tab
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.