RobinJ1995

Untitled

May 15th, 2011
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 5.69 KB | None | 0 0
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Main
  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.         Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Main))
  26.         Me.PicBox = New System.Windows.Forms.PictureBox()
  27.         Me.btnOpen = New System.Windows.Forms.Button()
  28.         Me.btnSave = New System.Windows.Forms.Button()
  29.         Me.pbProgress = New FlickSoft_Controls_Progressbar.Progressbar()
  30.         Me.dlgOpen = New System.Windows.Forms.OpenFileDialog()
  31.         Me.dlgSave = New System.Windows.Forms.SaveFileDialog()
  32.         CType(Me.PicBox, System.ComponentModel.ISupportInitialize).BeginInit()
  33.         Me.SuspendLayout()
  34.         '
  35.         'PicBox
  36.         '
  37.         Me.PicBox.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  38.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  39.         Me.PicBox.Location = New System.Drawing.Point(0, 0)
  40.         Me.PicBox.Name = "PicBox"
  41.         Me.PicBox.Size = New System.Drawing.Size(254, 254)
  42.         Me.PicBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
  43.         Me.PicBox.TabIndex = 0
  44.         Me.PicBox.TabStop = False
  45.         '
  46.         'btnOpen
  47.         '
  48.         Me.btnOpen.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Desktop
  49.         Me.btnOpen.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.GradientActiveCaption
  50.         Me.btnOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  51.         Me.btnOpen.Location = New System.Drawing.Point(12, 260)
  52.         Me.btnOpen.Name = "btnOpen"
  53.         Me.btnOpen.Size = New System.Drawing.Size(110, 23)
  54.         Me.btnOpen.TabIndex = 1
  55.         Me.btnOpen.Text = "Load image..."
  56.         Me.btnOpen.UseVisualStyleBackColor = True
  57.         '
  58.         'btnSave
  59.         '
  60.         Me.btnSave.Enabled = False
  61.         Me.btnSave.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Desktop
  62.         Me.btnSave.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.GradientActiveCaption
  63.         Me.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat
  64.         Me.btnSave.Location = New System.Drawing.Point(132, 260)
  65.         Me.btnSave.Name = "btnSave"
  66.         Me.btnSave.Size = New System.Drawing.Size(110, 23)
  67.         Me.btnSave.TabIndex = 2
  68.         Me.btnSave.Text = "Save icon..."
  69.         Me.btnSave.UseVisualStyleBackColor = True
  70.         '
  71.         'pbProgress
  72.         '
  73.         Me.pbProgress.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  74.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  75.         Me.pbProgress.BackColor = System.Drawing.Color.Transparent
  76.         Me.pbProgress.Color = "blue"
  77.         Me.pbProgress.ForeColor = System.Drawing.Color.Blue
  78.         Me.pbProgress.Location = New System.Drawing.Point(0, 0)
  79.         Me.pbProgress.MaximumSize = New System.Drawing.Size(2048, 512)
  80.         Me.pbProgress.MaximumValue = 100
  81.         Me.pbProgress.Name = "pbProgress"
  82.         Me.pbProgress.Size = New System.Drawing.Size(254, 254)
  83.         Me.pbProgress.TabIndex = 3
  84.         Me.pbProgress.Value = 0
  85.         Me.pbProgress.Visible = False
  86.         '
  87.         'dlgOpen
  88.         '
  89.         Me.dlgOpen.Filter = "Supported filetypes|*.png;*.gif;*.jpg;*.jpeg;*.bmp;*.wmf;*.tiff;*.exif;*.emf|All " & _
  90.             "files|*.*"
  91.         Me.dlgOpen.Title = "Iconifier - Load Image..."
  92.         '
  93.         'dlgSave
  94.         '
  95.         Me.dlgSave.Filter = "Icon|*.ico|All files|*.*"
  96.         Me.dlgSave.Title = "Iconifier - Save icon..."
  97.         '
  98.         'Main
  99.         '
  100.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  101.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  102.         Me.BackColor = System.Drawing.SystemColors.ActiveCaption
  103.         Me.ClientSize = New System.Drawing.Size(254, 293)
  104.         Me.Controls.Add(Me.pbProgress)
  105.         Me.Controls.Add(Me.btnSave)
  106.         Me.Controls.Add(Me.btnOpen)
  107.         Me.Controls.Add(Me.PicBox)
  108.         Me.ForeColor = System.Drawing.SystemColors.ActiveCaptionText
  109.         Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
  110.         Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  111.         Me.Name = "Main"
  112.         Me.Text = "Iconifier"
  113.         CType(Me.PicBox, System.ComponentModel.ISupportInitialize).EndInit()
  114.         Me.ResumeLayout(False)
  115.  
  116.     End Sub
  117.     Friend WithEvents PicBox As System.Windows.Forms.PictureBox
  118.     Friend WithEvents btnOpen As System.Windows.Forms.Button
  119.     Friend WithEvents btnSave As System.Windows.Forms.Button
  120.     Friend WithEvents pbProgress As FlickSoft_Controls_Progressbar.Progressbar
  121.     Friend WithEvents dlgOpen As System.Windows.Forms.OpenFileDialog
  122.     Friend WithEvents dlgSave As System.Windows.Forms.SaveFileDialog
  123.  
  124. End Class
Add Comment
Please, Sign In to add comment