Advertisement
Guest User

PictureBoxZoom

a guest
Nov 21st, 2012
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 2.77 KB | None | 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.         Me.PictureBox1 = New System.Windows.Forms.PictureBox()
  26.         Me.Panel1 = New System.Windows.Forms.Panel()
  27.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
  28.         Me.Panel1.SuspendLayout()
  29.         Me.SuspendLayout()
  30.         '
  31.         'PictureBox1
  32.         '
  33.         Me.PictureBox1.Image = Global.ImageViewer.My.Resources.Resources._731695634749612697528769
  34.         Me.PictureBox1.Location = New System.Drawing.Point(0, 0)
  35.         Me.PictureBox1.Name = "PictureBox1"
  36.         Me.PictureBox1.Size = New System.Drawing.Size(775, 435)
  37.         Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
  38.         Me.PictureBox1.TabIndex = 0
  39.         Me.PictureBox1.TabStop = False
  40.         '
  41.         'Panel1
  42.         '
  43.         Me.Panel1.AutoScroll = True
  44.         Me.Panel1.BackColor = System.Drawing.SystemColors.AppWorkspace
  45.         Me.Panel1.Controls.Add(Me.PictureBox1)
  46.         Me.Panel1.Location = New System.Drawing.Point(109, 33)
  47.         Me.Panel1.Name = "Panel1"
  48.         Me.Panel1.Size = New System.Drawing.Size(667, 389)
  49.         Me.Panel1.TabIndex = 1
  50.         '
  51.         'Form1
  52.         '
  53.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  54.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  55.         Me.BackColor = System.Drawing.Color.FromArgb(CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer))
  56.         Me.ClientSize = New System.Drawing.Size(861, 500)
  57.         Me.Controls.Add(Me.Panel1)
  58.         Me.Name = "Form1"
  59.         Me.Text = "Form1"
  60.         CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
  61.         Me.Panel1.ResumeLayout(False)
  62.         Me.ResumeLayout(False)
  63.  
  64.     End Sub
  65.     Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
  66.     Friend WithEvents Panel1 As System.Windows.Forms.Panel
  67.  
  68. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement