Form1.Designer.vb
上传用户:ammar_low
上传日期:2021-11-27
资源大小:44k
文件大小:3k
源码类别:

2D图形编程

开发平台:

Visual Basic

  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3.     Inherits System.Windows.Forms.Form
  4.     'Form 覆寫 Dispose 以清除元件清單。
  5.     <System.Diagnostics.DebuggerNonUserCode()> _
  6.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7.         If disposing AndAlso components IsNot Nothing Then
  8.             components.Dispose()
  9.         End If
  10.         MyBase.Dispose(disposing)
  11.     End Sub
  12.     '為 Windows Form 設計工具的必要項
  13.     Private components As System.ComponentModel.IContainer
  14.     '注意: 以下為 Windows Form 設計工具所需的程序
  15.     '可以使用 Windows Form 設計工具進行修改。
  16.     '請不要使用程式碼編輯器進行修改。
  17.     <System.Diagnostics.DebuggerStepThrough()> _
  18.     Private Sub InitializeComponent()
  19.         Me.Button1 = New System.Windows.Forms.Button
  20.         Me.PictureBox1 = New System.Windows.Forms.PictureBox
  21.         Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog
  22.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  23.         Me.SuspendLayout()
  24.         '
  25.         'Button1
  26.         '
  27.         Me.Button1.Location = New System.Drawing.Point(154, 164)
  28.         Me.Button1.Name = "Button1"
  29.         Me.Button1.Size = New System.Drawing.Size(75, 23)
  30.         Me.Button1.TabIndex = 0
  31.         Me.Button1.Text = "Button1"
  32.         Me.Button1.UseVisualStyleBackColor = True
  33.         '
  34.         'PictureBox1
  35.         '
  36.         Me.PictureBox1.Location = New System.Drawing.Point(12, 12)
  37.         Me.PictureBox1.Name = "PictureBox1"
  38.         Me.PictureBox1.Size = New System.Drawing.Size(205, 133)
  39.         Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
  40.         Me.PictureBox1.TabIndex = 1
  41.         Me.PictureBox1.TabStop = False
  42.         '
  43.         'OpenFileDialog1
  44.         '
  45.         Me.OpenFileDialog1.FileName = "OpenFileDialog1"
  46.         '
  47.         'Form1
  48.         '
  49.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  50.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  51.         Me.ClientSize = New System.Drawing.Size(292, 266)
  52.         Me.Controls.Add(Me.PictureBox1)
  53.         Me.Controls.Add(Me.Button1)
  54.         Me.Name = "Form1"
  55.         Me.Text = "Form1"
  56.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  57.         Me.ResumeLayout(False)
  58.     End Sub
  59.     Friend WithEvents Button1 As System.Windows.Forms.Button
  60.     Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
  61.     Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
  62. End Class