VB.Net by API/System.Windows.Forms/GroupBox

Материал из VB Эксперт
Перейти к: навигация, поиск

GroupBox.Controls.AddRange

<source lang="vbnet"> Imports System.Windows.Forms

Module Module1

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

End Module


Public Class Form1

   Inherits System.Windows.Forms.Form
  1. 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 Nothing) Then
               components.Dispose()
           End If
       End If
       MyBase.Dispose(disposing)
   End Sub
   "Required by the Windows Form Designer
   Private components As System.ruponentModel.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(24, 24)
       Me.GroupBox1.Name = "GroupBox1"
       Me.GroupBox1.Size = New System.Drawing.Size(200, 128)
       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(24, 184)
       Me.GroupBox2.Name = "GroupBox2"
       Me.GroupBox2.Size = New System.Drawing.Size(200, 128)
       Me.GroupBox2.TabIndex = 1
       Me.GroupBox2.TabStop = False
       Me.GroupBox2.Text = "Dinner"
       "
       "RadioButton1
       "
       Me.RadioButton1.Location = New System.Drawing.Point(32, 24)
       Me.RadioButton1.Name = "RadioButton1"
       Me.RadioButton1.TabIndex = 0
       Me.RadioButton1.Text = "Salad"
       "
       "RadioButton2
       "
       Me.RadioButton2.Location = New System.Drawing.Point(32, 56)
       Me.RadioButton2.Name = "RadioButton2"
       Me.RadioButton2.TabIndex = 1
       Me.RadioButton2.Text = "Soup"
       "
       "RadioButton3
       "
       Me.RadioButton3.Location = New System.Drawing.Point(32, 88)
       Me.RadioButton3.Name = "RadioButton3"
       Me.RadioButton3.TabIndex = 2
       Me.RadioButton3.Text = "Fruit"
       "
       "RadioButton4
       "
       Me.RadioButton4.Location = New System.Drawing.Point(32, 24)
       Me.RadioButton4.Name = "RadioButton4"
       Me.RadioButton4.TabIndex = 0
       Me.RadioButton4.Text = "Appetizer"
       "
       "RadioButton5
       "
       Me.RadioButton5.Location = New System.Drawing.Point(32, 56)
       Me.RadioButton5.Name = "RadioButton5"
       Me.RadioButton5.TabIndex = 1
       Me.RadioButton5.Text = "Salad"
       "
       "RadioButton6
       "
       Me.RadioButton6.Location = New System.Drawing.Point(32, 88)
       Me.RadioButton6.Name = "RadioButton6"
       Me.RadioButton6.TabIndex = 2
       Me.RadioButton6.Text = "Soup"
       "
       "Button1
       "
       Me.Button1.Location = New System.Drawing.Point(80, 344)
       Me.Button1.Name = "Button1"
       Me.Button1.Size = New System.Drawing.Size(96, 23)
       Me.Button1.TabIndex = 2
       Me.Button1.Text = "Show Choices"
       "
       "Form1
       "
       Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
       Me.ClientSize = New System.Drawing.Size(248, 405)
       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
  1. End Region
   Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       If (RadioButton1.Checked) Then
           MessageBox.Show("Soup for lunch")
       ElseIf (RadioButton2.Checked) Then
           MessageBox.Show("Salad for lunch")
       ElseIf (RadioButton3.Checked) Then
           MessageBox.Show("Fruit for lunch")
       End If
       If (RadioButton4.Checked) Then
           MessageBox.Show("Appetizer for dinner")
       ElseIf (RadioButton5.Checked) Then
           MessageBox.Show("Salad for dinner")
       ElseIf (RadioButton6.Checked) Then
           MessageBox.Show("Soup for dinner")
       End If
   End Sub

End Class


 </source>


GroupBox.Height

<source lang="vbnet">

Imports System.Windows.Forms public class FormResizeEvent

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

End class Public Class Form1

   Private Sub Form1_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Resize
       GroupBox1.Top = 0
       GroupBox1.Left = 0
       GroupBox1.Width = Me.Width
       GroupBox1.Height = Me.Height
       Label1.Left = GroupBox1.Top + 10
       Label1.Top = GroupBox1.Left + 20
       TextBox1.Top = Label1.Top + 50
       TextBox1.Left = Label1.Left
       TextBox1.Width = GroupBox1.Width - 20
   End Sub

End Class <Global.Microsoft.VisualBasic.rupilerServices.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.ruponentModel.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.GroupBox1 = New System.Windows.Forms.GroupBox
       Me.TextBox1 = New System.Windows.Forms.TextBox
       Me.Label1 = New System.Windows.Forms.Label
       Me.GroupBox1.SuspendLayout()
       Me.SuspendLayout()
       "
       "GroupBox1
       "
       Me.GroupBox1.Controls.Add(Me.TextBox1)
       Me.GroupBox1.Controls.Add(Me.Label1)
       Me.GroupBox1.Location = New System.Drawing.Point(12, 12)
       Me.GroupBox1.Name = "GroupBox1"
       Me.GroupBox1.Size = New System.Drawing.Size(392, 195)
       Me.GroupBox1.TabIndex = 0
       Me.GroupBox1.TabStop = False
       Me.GroupBox1.Text = "GroupBox1"
       "
       "TextBox1
       "
       Me.TextBox1.Location = New System.Drawing.Point(32, 62)
       Me.TextBox1.Multiline = True
       Me.TextBox1.Name = "TextBox1"
       Me.TextBox1.Size = New System.Drawing.Size(331, 21)
       Me.TextBox1.TabIndex = 5
       "
       "Label1
       "
       Me.Label1.AutoSize = True
       Me.Label1.Location = New System.Drawing.Point(30, 30)
       Me.Label1.Name = "Label1"
       Me.Label1.Size = New System.Drawing.Size(41, 12)
       Me.Label1.TabIndex = 4
       Me.Label1.Text = "Label1"
       "
       "Form1
       "
       Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
       Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
       Me.ClientSize = New System.Drawing.Size(416, 219)
       Me.Controls.Add(Me.GroupBox1)
       Me.Name = "Form1"
       Me.Text = "Form1"
       Me.GroupBox1.ResumeLayout(False)
       Me.GroupBox1.PerformLayout()
       Me.ResumeLayout(False)
   End Sub
   Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
   Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
   Friend WithEvents Label1 As System.Windows.Forms.Label

End Class


 </source>


GroupBox.Top

<source lang="vbnet">

Imports System.Windows.Forms public class FormResizeEvent

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

End class Public Class Form1

   Private Sub Form1_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Resize
       GroupBox1.Top = 0
       GroupBox1.Left = 0
       GroupBox1.Width = Me.Width
       GroupBox1.Height = Me.Height
       Label1.Left = GroupBox1.Top + 10
       Label1.Top = GroupBox1.Left + 20
       TextBox1.Top = Label1.Top + 50
       TextBox1.Left = Label1.Left
       TextBox1.Width = GroupBox1.Width - 20
   End Sub

End Class <Global.Microsoft.VisualBasic.rupilerServices.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.ruponentModel.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.GroupBox1 = New System.Windows.Forms.GroupBox
       Me.TextBox1 = New System.Windows.Forms.TextBox
       Me.Label1 = New System.Windows.Forms.Label
       Me.GroupBox1.SuspendLayout()
       Me.SuspendLayout()
       "
       "GroupBox1
       "
       Me.GroupBox1.Controls.Add(Me.TextBox1)
       Me.GroupBox1.Controls.Add(Me.Label1)
       Me.GroupBox1.Location = New System.Drawing.Point(12, 12)
       Me.GroupBox1.Name = "GroupBox1"
       Me.GroupBox1.Size = New System.Drawing.Size(392, 195)
       Me.GroupBox1.TabIndex = 0
       Me.GroupBox1.TabStop = False
       Me.GroupBox1.Text = "GroupBox1"
       "
       "TextBox1
       "
       Me.TextBox1.Location = New System.Drawing.Point(32, 62)
       Me.TextBox1.Multiline = True
       Me.TextBox1.Name = "TextBox1"
       Me.TextBox1.Size = New System.Drawing.Size(331, 21)
       Me.TextBox1.TabIndex = 5
       "
       "Label1
       "
       Me.Label1.AutoSize = True
       Me.Label1.Location = New System.Drawing.Point(30, 30)
       Me.Label1.Name = "Label1"
       Me.Label1.Size = New System.Drawing.Size(41, 12)
       Me.Label1.TabIndex = 4
       Me.Label1.Text = "Label1"
       "
       "Form1
       "
       Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
       Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
       Me.ClientSize = New System.Drawing.Size(416, 219)
       Me.Controls.Add(Me.GroupBox1)
       Me.Name = "Form1"
       Me.Text = "Form1"
       Me.GroupBox1.ResumeLayout(False)
       Me.GroupBox1.PerformLayout()
       Me.ResumeLayout(False)
   End Sub
   Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
   Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
   Friend WithEvents Label1 As System.Windows.Forms.Label

End Class


 </source>