Advertisement
RJPcat

Form6.Designer.vb

Nov 20th, 2021
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 4.68 KB | None | 0 0
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form6
  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.         Me.DieControl6 = New Dice.DieControl()
  26.         Me.btnRoll6 = New System.Windows.Forms.Button()
  27.         Me.ListView6 = New System.Windows.Forms.ListView()
  28.         Me.chResult = New System.Windows.Forms.ColumnHeader()
  29.         Me.chCount = New System.Windows.Forms.ColumnHeader()
  30.         Me.chPct = New System.Windows.Forms.ColumnHeader()
  31.         Me.chEmpty = New System.Windows.Forms.ColumnHeader()
  32.         Me.btnRoll6x100 = New System.Windows.Forms.Button()
  33.         Me.SuspendLayout
  34.         '
  35.         'DieControl6
  36.         '
  37.         Me.DieControl6.Font = New System.Drawing.Font("Segoe UI", 48!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point)
  38.         Me.DieControl6.Location = New System.Drawing.Point(12, 12)
  39.         Me.DieControl6.Margin = New System.Windows.Forms.Padding(16, 17, 16, 17)
  40.         Me.DieControl6.Name = "DieControl6"
  41.         Me.DieControl6.Sides = 6
  42.         Me.DieControl6.Size = New System.Drawing.Size(150, 150)
  43.         Me.DieControl6.TabIndex = 0
  44.         Me.DieControl6.Value = 6
  45.         '
  46.         'btnRoll6
  47.         '
  48.         Me.btnRoll6.Location = New System.Drawing.Point(51, 183)
  49.         Me.btnRoll6.Name = "btnRoll6"
  50.         Me.btnRoll6.Size = New System.Drawing.Size(75, 23)
  51.         Me.btnRoll6.TabIndex = 1
  52.         Me.btnRoll6.Text = "Roll"
  53.         Me.btnRoll6.UseVisualStyleBackColor = true
  54.         '
  55.         'ListView6
  56.         '
  57.         Me.ListView6.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.chResult, Me.chCount, Me.chPct, Me.chEmpty})
  58.         Me.ListView6.FullRowSelect = true
  59.         Me.ListView6.GridLines = true
  60.         Me.ListView6.HideSelection = false
  61.         Me.ListView6.Location = New System.Drawing.Point(181, 12)
  62.         Me.ListView6.Name = "ListView6"
  63.         Me.ListView6.Size = New System.Drawing.Size(125, 150)
  64.         Me.ListView6.TabIndex = 2
  65.         Me.ListView6.UseCompatibleStateImageBehavior = false
  66.         Me.ListView6.View = System.Windows.Forms.View.Details
  67.         '
  68.         'chResult
  69.         '
  70.         Me.chResult.Text = "#"
  71.         Me.chResult.Width = 25
  72.         '
  73.         'chCount
  74.         '
  75.         Me.chCount.Text = "Count"
  76.         Me.chCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  77.         Me.chCount.Width = 45
  78.         '
  79.         'chPct
  80.         '
  81.         Me.chPct.Text = "Pct"
  82.         Me.chPct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  83.         Me.chPct.Width = 45
  84.         '
  85.         'chEmpty
  86.         '
  87.         Me.chEmpty.Text = ""
  88.         Me.chEmpty.Width = 0
  89.         '
  90.         'btnRoll6x100
  91.         '
  92.         Me.btnRoll6x100.AutoSize = true
  93.         Me.btnRoll6x100.Location = New System.Drawing.Point(197, 182)
  94.         Me.btnRoll6x100.Name = "btnRoll6x100"
  95.         Me.btnRoll6x100.Size = New System.Drawing.Size(90, 25)
  96.         Me.btnRoll6x100.TabIndex = 3
  97.         Me.btnRoll6x100.Text = "Roll 100 times"
  98.         Me.btnRoll6x100.UseVisualStyleBackColor = true
  99.         '
  100.         'Form6
  101.         '
  102.         Me.AutoScaleDimensions = New System.Drawing.SizeF(7!, 15!)
  103.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  104.         Me.ClientSize = New System.Drawing.Size(322, 223)
  105.         Me.Controls.Add(Me.btnRoll6x100)
  106.         Me.Controls.Add(Me.ListView6)
  107.         Me.Controls.Add(Me.btnRoll6)
  108.         Me.Controls.Add(Me.DieControl6)
  109.         Me.Name = "Form6"
  110.         Me.Text = "6-sided die"
  111.         Me.ResumeLayout(false)
  112.         Me.PerformLayout
  113.  
  114. End Sub
  115.  
  116.     Friend WithEvents DieControl6 As DieControl
  117.     Friend WithEvents btnRoll6 As Button
  118.     Friend WithEvents ListView6 As ListView
  119.     Friend WithEvents chResult As ColumnHeader
  120.     Friend WithEvents chCount As ColumnHeader
  121.     Friend WithEvents chPct As ColumnHeader
  122.     Friend WithEvents chEmpty As ColumnHeader
  123.     Friend WithEvents btnRoll6x100 As Button
  124. End Class
  125.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement