GroupBox Demo : GroupBox « GUI « 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 » GUI » GroupBoxScreenshots 
GroupBox Demo
GroupBox Demo

Imports System.Windows.Forms


Module Module1

    Sub Main()
        Application.Run(New Form1)
    End Sub

End Module





Public Class Form1
    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 GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
    Friend WithEvents RadioButton1 As System.Windows.Forms.RadioButton
    Friend WithEvents RadioButton2 As System.Windows.Forms.RadioButton
    Friend WithEvents RadioButton3 As System.Windows.Forms.RadioButton
    Friend WithEvents RadioButton4 As System.Windows.Forms.RadioButton
    Friend WithEvents RadioButton5 As System.Windows.Forms.RadioButton
    Friend WithEvents RadioButton6 As System.Windows.Forms.RadioButton
    Friend WithEvents Button1 As System.Windows.Forms.Button
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.GroupBox1 = New System.Windows.Forms.GroupBox()
        Me.GroupBox2 = New System.Windows.Forms.GroupBox()
        Me.RadioButton1 = New System.Windows.Forms.RadioButton()
        Me.RadioButton2 = New System.Windows.Forms.RadioButton()
        Me.RadioButton3 = New System.Windows.Forms.RadioButton()
        Me.RadioButton4 = New System.Windows.Forms.RadioButton()
        Me.RadioButton5 = New System.Windows.Forms.RadioButton()
        Me.RadioButton6 = New System.Windows.Forms.RadioButton()
        Me.Button1 = New System.Windows.Forms.Button()
        Me.GroupBox1.SuspendLayout()
        Me.GroupBox2.SuspendLayout()
        Me.SuspendLayout()
        '
        'GroupBox1
        '
        Me.GroupBox1.Controls.AddRange(New System.Windows.Forms.Control() {Me.RadioButton3, Me.RadioButton2, Me.RadioButton1})
        Me.GroupBox1.Location = New System.Drawing.Point(2424)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(200128)
        Me.GroupBox1.TabIndex = 0
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "Lunch"
        '
        'GroupBox2
        '
        Me.GroupBox2.Controls.AddRange(New System.Windows.Forms.Control() {Me.RadioButton6, Me.RadioButton5, Me.RadioButton4})
        Me.GroupBox2.Location = New System.Drawing.Point(24184)
        Me.GroupBox2.Name = "GroupBox2"
        Me.GroupBox2.Size = New System.Drawing.Size(200128)
        Me.GroupBox2.TabIndex = 1
        Me.GroupBox2.TabStop = False
        Me.GroupBox2.Text = "Dinner"
        '
        'RadioButton1
        '
        Me.RadioButton1.Location = New System.Drawing.Point(3224)
        Me.RadioButton1.Name = "RadioButton1"
        Me.RadioButton1.TabIndex = 0
        Me.RadioButton1.Text = "Salad"
        '
        'RadioButton2
        '
        Me.RadioButton2.Location = New System.Drawing.Point(3256)
        Me.RadioButton2.Name = "RadioButton2"
        Me.RadioButton2.TabIndex = 1
        Me.RadioButton2.Text = "Soup"
        '
        'RadioButton3
        '
        Me.RadioButton3.Location = New System.Drawing.Point(3288)
        Me.RadioButton3.Name = "RadioButton3"
        Me.RadioButton3.TabIndex = 2
        Me.RadioButton3.Text = "Fruit"
        '
        'RadioButton4
        '
        Me.RadioButton4.Location = New System.Drawing.Point(3224)
        Me.RadioButton4.Name = "RadioButton4"
        Me.RadioButton4.TabIndex = 0
        Me.RadioButton4.Text = "Appetizer"
        '
        'RadioButton5
        '
        Me.RadioButton5.Location = New System.Drawing.Point(3256)
        Me.RadioButton5.Name = "RadioButton5"
        Me.RadioButton5.TabIndex = 1
        Me.RadioButton5.Text = "Salad"
        '
        'RadioButton6
        '
        Me.RadioButton6.Location = New System.Drawing.Point(3288)
        Me.RadioButton6.Name = "RadioButton6"
        Me.RadioButton6.TabIndex = 2
        Me.RadioButton6.Text = "Soup"
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(80344)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(9623)
        Me.Button1.TabIndex = 2
        Me.Button1.Text = "Show Choices"
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(248405)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button1, Me.GroupBox2, Me.GroupBox1})
        Me.Name = "Form1"
        Me.Text = "GroupBoxDemo"
        Me.GroupBox1.ResumeLayout(False)
        Me.GroupBox2.ResumeLayout(False)
        Me.ResumeLayout(False)

    End Sub

#End Region

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button1.Click
        If (RadioButton1.CheckedThen
            MessageBox.Show("Soup for lunch")
        ElseIf (RadioButton2.CheckedThen
            MessageBox.Show("Salad for lunch")
        ElseIf (RadioButton3.CheckedThen
            MessageBox.Show("Fruit for lunch")
        End If

        If (RadioButton4.CheckedThen
            MessageBox.Show("Appetizer for dinner")
        ElseIf (RadioButton5.CheckedThen
            MessageBox.Show("Salad for dinner")
        ElseIf (RadioButton6.CheckedThen
            MessageBox.Show("Soup for dinner")
        End If
    End Sub
End Class

           
       
Related examples in the same category
1.Using GroupBoxes and Panels to hold buttonsUsing GroupBoxes and Panels to hold buttons
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.