Guest User

Untitled

a guest
Apr 3rd, 2023
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.47 KB | Source Code | 0 0
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class Form1
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.     <System.Diagnostics.DebuggerNonUserCode()>
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         Try
  9.             If disposing AndAlso components IsNot Nothing Then
  10.                 components.Dispose()
  11.             End If
  12.         Finally
  13.             MyBase.Dispose(disposing)
  14.         End Try
  15.     End Sub
  16.  
  17.     'Required by the Windows Form Designer
  18.     Private components As System.ComponentModel.IContainer
  19.  
  20.     'NOTE: The following procedure is required by the Windows Form Designer
  21.     'It can be modified using the Windows Form Designer.  
  22.     'Do not modify it using the code editor.
  23.     <System.Diagnostics.DebuggerStepThrough()>
  24.     Private Sub InitializeComponent()
  25.         FlowLayoutPanel1 = New FlowLayoutPanel()
  26.         Me.Button1 = New Button()
  27.         Me.Button2 = New Button()
  28.         Me.Button3 = New Button()
  29.         Me.Button4 = New Button()
  30.         Me.FlowLayoutPanel1.SuspendLayout()
  31.         SuspendLayout()
  32.         '
  33.         ' FlowLayoutPanel1
  34.         '
  35.         Me.FlowLayoutPanel1.Controls.Add(Me.Button3)
  36.         Me.FlowLayoutPanel1.Controls.Add(Me.Button4)
  37.         Me.FlowLayoutPanel1.Controls.Add(Me.Button1)
  38.         Me.FlowLayoutPanel1.Controls.Add(Me.Button2)
  39.         FlowLayoutPanel1.Dock = DockStyle.Fill
  40.         FlowLayoutPanel1.FlowDirection = FlowDirection.TopDown
  41.         FlowLayoutPanel1.Location = New Point(0, 0)
  42.         FlowLayoutPanel1.Name = "FlowLayoutPanel1"
  43.         FlowLayoutPanel1.Size = New Size(800, 450)
  44.         FlowLayoutPanel1.TabIndex = 0
  45.         '
  46.         'Button1
  47.         '
  48.         Me.Button1.Location = New System.Drawing.Point(3, 61)
  49.         Me.Button1.Name = "Button1"
  50.         Me.Button1.Size = New System.Drawing.Size(380, 23)
  51.         Me.Button1.TabIndex = 0
  52.         Me.Button1.Text = "Open form that overrides onLoad normal with center parent with parent"
  53.         '
  54.         'Button2
  55.         '
  56.         Me.Button2.Location = New System.Drawing.Point(3, 90)
  57.         Me.Button2.Name = "Button2"
  58.         Me.Button2.Size = New System.Drawing.Size(380, 23)
  59.         Me.Button2.TabIndex = 1
  60.         Me.Button2.Text = "Open form that overrides onLoad normal with center parent without parent"
  61.         '
  62.         'Button3
  63.         '
  64.         Me.Button3.Location = New System.Drawing.Point(3, 3)
  65.         Me.Button3.Name = "Button3"
  66.         Me.Button3.Size = New System.Drawing.Size(380, 23)
  67.         Me.Button3.TabIndex = 2
  68.         Me.Button3.Text = "Open form normal with center parent"
  69.         '
  70.         'Button4
  71.         '
  72.         Me.Button4.Location = New System.Drawing.Point(3, 32)
  73.         Me.Button4.Name = "Button4"
  74.         Me.Button4.Size = New System.Drawing.Size(380, 23)
  75.         Me.Button4.TabIndex = 3
  76.         Me.Button4.Text = "Open form maximized with center parent"
  77.         '
  78.         ' Form1
  79.         '
  80.         AutoScaleDimensions = New SizeF(7.0F, 15.0F)
  81.         AutoScaleMode = AutoScaleMode.Font
  82.         ClientSize = New Size(800, 450)
  83.         Controls.Add(FlowLayoutPanel1)
  84.         Name = "Form1"
  85.         Text = "Form1"
  86.         ResumeLayout(False)
  87.     End Sub
  88.  
  89.  
  90.     Friend WithEvents FlowLayoutPanel1 As FlowLayoutPanel
  91.     Friend WithEvents Button1 As Button
  92.     Friend WithEvents Button2 As Button
  93.     Friend WithEvents Button3 As Button
  94.     Friend WithEvents Button4 As Button
  95. End Class
  96.  
Advertisement
Add Comment
Please, Sign In to add comment