mirror of
https://github.com/SistemaRayoXP/Virtual-Mac.git
synced 2024-12-03 01:51:41 +00:00
8b3286fe05
New Mac Wizard working, and revamped, so now you choose emulator and OS. Thank to adespoton for the Mac compatibility matrix. (https://docs.google.com/spreadsheets/d/1us6SCBgVs8NqbxofJXTmHDeK3nKQJpcgya2nWC9_t2w/edit#gid=0) Now PearPC files can be loaded and saved (I've taken code from PearPC Config File Generator and adapted it to Virtual Mac) Still getting the challenge of dealing with BII and SheepShaver config files. Will upload new versions of files when they work. Updated to 0.6.1 in file version, but technically it's 0.6.1 Beta (Or 0.6.1 RC, 0.6.0, not the final 0.6.1) Now with some investigation, the app is "translated" to Spanish and German (Please forgive the bad German translation, I used GTranslate and Virtual PC as reference points for this). To change the language, go to File > Options > Language and select the new language. Note that German(de-DE) or Spanish(es-MX) might be loaded by default if you are using these languages in you Windows installation. Note that the translation is crap, and is not complete, so many parts are still in English. Will try to fix this in 0.7.1 Still need to fix Saving BII and SS files, so this is not final 0.6.1, will release a "revision" later.
408 lines
19 KiB
VB.net
408 lines
19 KiB
VB.net
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class frmNewDisk
|
|
Inherits System.Windows.Forms.Form
|
|
|
|
'Form reemplaza a Dispose para limpiar la lista de componentes.
|
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
|
Try
|
|
If disposing AndAlso components IsNot Nothing Then
|
|
components.Dispose()
|
|
End If
|
|
Finally
|
|
MyBase.Dispose(disposing)
|
|
End Try
|
|
End Sub
|
|
|
|
'Requerido por el Diseñador de Windows Forms
|
|
Private components As System.ComponentModel.IContainer
|
|
|
|
'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
|
|
'Se puede modificar usando el Diseñador de Windows Forms.
|
|
'No lo modifique con el editor de código.
|
|
<System.Diagnostics.DebuggerStepThrough()> _
|
|
Private Sub InitializeComponent()
|
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmNewDisk))
|
|
Me.Welcome = New System.Windows.Forms.Panel()
|
|
Me.WelcomeDescription = New System.Windows.Forms.Label()
|
|
Me.WelcomeTitle = New System.Windows.Forms.Label()
|
|
Me.FormButtons = New System.Windows.Forms.GroupBox()
|
|
Me.cmdCancel = New System.Windows.Forms.Button()
|
|
Me.cmdNext = New System.Windows.Forms.Button()
|
|
Me.cmdBack = New System.Windows.Forms.Button()
|
|
Me.Wizard = New System.Windows.Forms.Panel()
|
|
Me.CreateDisk = New System.Windows.Forms.Panel()
|
|
Me.DiskSizeDefaults = New System.Windows.Forms.ComboBox()
|
|
Me.DiskMBLabel = New System.Windows.Forms.Label()
|
|
Me.DiskSize = New System.Windows.Forms.NumericUpDown()
|
|
Me.DiskSizeLabel = New System.Windows.Forms.Label()
|
|
Me.SaveDisk = New System.Windows.Forms.Button()
|
|
Me.DiskPath = New System.Windows.Forms.TextBox()
|
|
Me.CreateDiskDescription = New System.Windows.Forms.Label()
|
|
Me.DescriptionContainer = New System.Windows.Forms.GroupBox()
|
|
Me.Description = New System.Windows.Forms.Label()
|
|
Me.DescriptionName = New System.Windows.Forms.Label()
|
|
Me.Save = New System.Windows.Forms.SaveFileDialog()
|
|
Me.EndWizard = New System.Windows.Forms.Panel()
|
|
Me.EndTitle = New System.Windows.Forms.Label()
|
|
Me.EndDefSize = New System.Windows.Forms.Label()
|
|
Me.EndDefSizeLabel = New System.Windows.Forms.Label()
|
|
Me.EndInfoFinish = New System.Windows.Forms.Label()
|
|
Me.EndDescription = New System.Windows.Forms.Label()
|
|
Me.EndDefPathLabel = New System.Windows.Forms.Label()
|
|
Me.EndDefPath = New System.Windows.Forms.Label()
|
|
Me.CreateDiskInBackground = New System.ComponentModel.BackgroundWorker()
|
|
Me.Welcome.SuspendLayout()
|
|
Me.FormButtons.SuspendLayout()
|
|
Me.Wizard.SuspendLayout()
|
|
Me.CreateDisk.SuspendLayout()
|
|
CType(Me.DiskSize, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
Me.DescriptionContainer.SuspendLayout()
|
|
Me.EndWizard.SuspendLayout()
|
|
Me.SuspendLayout()
|
|
'
|
|
'Welcome
|
|
'
|
|
Me.Welcome.BackColor = System.Drawing.Color.White
|
|
Me.Welcome.BackgroundImage = Global.VirtualMac.My.Resources.Resources.NewDisk
|
|
Me.Welcome.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
|
Me.Welcome.Controls.Add(Me.WelcomeDescription)
|
|
Me.Welcome.Controls.Add(Me.WelcomeTitle)
|
|
Me.Welcome.Location = New System.Drawing.Point(0, 0)
|
|
Me.Welcome.Margin = New System.Windows.Forms.Padding(0)
|
|
Me.Welcome.Name = "Welcome"
|
|
Me.Welcome.Size = New System.Drawing.Size(500, 310)
|
|
Me.Welcome.TabIndex = 3
|
|
'
|
|
'WelcomeDescription
|
|
'
|
|
Me.WelcomeDescription.Location = New System.Drawing.Point(170, 60)
|
|
Me.WelcomeDescription.Name = "WelcomeDescription"
|
|
Me.WelcomeDescription.Size = New System.Drawing.Size(300, 105)
|
|
Me.WelcomeDescription.TabIndex = 1
|
|
Me.WelcomeDescription.Text = resources.GetString("WelcomeDescription.Text")
|
|
'
|
|
'WelcomeTitle
|
|
'
|
|
Me.WelcomeTitle.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.WelcomeTitle.Location = New System.Drawing.Point(170, 15)
|
|
Me.WelcomeTitle.Name = "WelcomeTitle"
|
|
Me.WelcomeTitle.Size = New System.Drawing.Size(300, 25)
|
|
Me.WelcomeTitle.TabIndex = 0
|
|
Me.WelcomeTitle.Text = "Welcome to the New Disk Wizard"
|
|
'
|
|
'FormButtons
|
|
'
|
|
Me.FormButtons.Controls.Add(Me.cmdCancel)
|
|
Me.FormButtons.Controls.Add(Me.cmdNext)
|
|
Me.FormButtons.Controls.Add(Me.cmdBack)
|
|
Me.FormButtons.Location = New System.Drawing.Point(0, 308)
|
|
Me.FormButtons.Margin = New System.Windows.Forms.Padding(0)
|
|
Me.FormButtons.Name = "FormButtons"
|
|
Me.FormButtons.Size = New System.Drawing.Size(499, 54)
|
|
Me.FormButtons.TabIndex = 0
|
|
Me.FormButtons.TabStop = False
|
|
'
|
|
'cmdCancel
|
|
'
|
|
Me.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
|
Me.cmdCancel.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.cmdCancel.Location = New System.Drawing.Point(412, 13)
|
|
Me.cmdCancel.Name = "cmdCancel"
|
|
Me.cmdCancel.Size = New System.Drawing.Size(75, 23)
|
|
Me.cmdCancel.TabIndex = 3
|
|
Me.cmdCancel.Text = "Cancel"
|
|
Me.cmdCancel.UseVisualStyleBackColor = True
|
|
'
|
|
'cmdNext
|
|
'
|
|
Me.cmdNext.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.cmdNext.Location = New System.Drawing.Point(327, 13)
|
|
Me.cmdNext.Name = "cmdNext"
|
|
Me.cmdNext.Size = New System.Drawing.Size(75, 23)
|
|
Me.cmdNext.TabIndex = 2
|
|
Me.cmdNext.Text = "&Next >"
|
|
Me.cmdNext.UseVisualStyleBackColor = True
|
|
'
|
|
'cmdBack
|
|
'
|
|
Me.cmdBack.Enabled = False
|
|
Me.cmdBack.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.cmdBack.Location = New System.Drawing.Point(252, 13)
|
|
Me.cmdBack.Name = "cmdBack"
|
|
Me.cmdBack.Size = New System.Drawing.Size(75, 23)
|
|
Me.cmdBack.TabIndex = 1
|
|
Me.cmdBack.Text = "< &Back"
|
|
Me.cmdBack.UseVisualStyleBackColor = True
|
|
'
|
|
'Wizard
|
|
'
|
|
Me.Wizard.BackColor = System.Drawing.SystemColors.Control
|
|
Me.Wizard.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
|
Me.Wizard.Controls.Add(Me.CreateDisk)
|
|
Me.Wizard.Controls.Add(Me.DescriptionContainer)
|
|
Me.Wizard.Location = New System.Drawing.Point(0, 0)
|
|
Me.Wizard.Margin = New System.Windows.Forms.Padding(0)
|
|
Me.Wizard.Name = "Wizard"
|
|
Me.Wizard.Size = New System.Drawing.Size(500, 310)
|
|
Me.Wizard.TabIndex = 4
|
|
Me.Wizard.Visible = False
|
|
'
|
|
'CreateDisk
|
|
'
|
|
Me.CreateDisk.Controls.Add(Me.DiskSizeDefaults)
|
|
Me.CreateDisk.Controls.Add(Me.DiskMBLabel)
|
|
Me.CreateDisk.Controls.Add(Me.DiskSize)
|
|
Me.CreateDisk.Controls.Add(Me.DiskSizeLabel)
|
|
Me.CreateDisk.Controls.Add(Me.SaveDisk)
|
|
Me.CreateDisk.Controls.Add(Me.DiskPath)
|
|
Me.CreateDisk.Controls.Add(Me.CreateDiskDescription)
|
|
Me.CreateDisk.Location = New System.Drawing.Point(0, 59)
|
|
Me.CreateDisk.Name = "CreateDisk"
|
|
Me.CreateDisk.Size = New System.Drawing.Size(498, 245)
|
|
Me.CreateDisk.TabIndex = 4
|
|
'
|
|
'DiskSizeDefaults
|
|
'
|
|
Me.DiskSizeDefaults.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
|
Me.DiskSizeDefaults.FormattingEnabled = True
|
|
Me.DiskSizeDefaults.Items.AddRange(New Object() {"User defined", "Mini vMac", "Basilisk II - 40 MB", "Basilisk II - 100 MB", "Basilisk II - 200 MB", "Basilisk II - 500 MB", "Basilisk II - 1 GB", "SheepShaver - 500 MB", "SheepShaver - 1 GB", "SheepShaver - 2 GB", "PearPC - 3 GB", "PearPC - 6 GB", "QEMU - 500 MB", "QEMU - 1 GB", "QEMU - 2 GB", "QEMU - 4 GB", "QEMU - 6 GB", "QEMU - 10 GB"})
|
|
Me.DiskSizeDefaults.Location = New System.Drawing.Point(25, 93)
|
|
Me.DiskSizeDefaults.Name = "DiskSizeDefaults"
|
|
Me.DiskSizeDefaults.Size = New System.Drawing.Size(186, 21)
|
|
Me.DiskSizeDefaults.TabIndex = 7
|
|
'
|
|
'DiskMBLabel
|
|
'
|
|
Me.DiskMBLabel.AutoSize = True
|
|
Me.DiskMBLabel.Location = New System.Drawing.Point(395, 96)
|
|
Me.DiskMBLabel.Name = "DiskMBLabel"
|
|
Me.DiskMBLabel.Size = New System.Drawing.Size(23, 13)
|
|
Me.DiskMBLabel.TabIndex = 22
|
|
Me.DiskMBLabel.Text = "MB"
|
|
'
|
|
'DiskSize
|
|
'
|
|
Me.DiskSize.Location = New System.Drawing.Point(305, 94)
|
|
Me.DiskSize.Maximum = New Decimal(New Integer() {80192, 0, 0, 0})
|
|
Me.DiskSize.Name = "DiskSize"
|
|
Me.DiskSize.Size = New System.Drawing.Size(84, 20)
|
|
Me.DiskSize.TabIndex = 8
|
|
Me.DiskSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
|
|
'
|
|
'DiskSizeLabel
|
|
'
|
|
Me.DiskSizeLabel.AutoSize = True
|
|
Me.DiskSizeLabel.Location = New System.Drawing.Point(217, 96)
|
|
Me.DiskSizeLabel.Name = "DiskSizeLabel"
|
|
Me.DiskSizeLabel.Size = New System.Drawing.Size(82, 13)
|
|
Me.DiskSizeLabel.TabIndex = 20
|
|
Me.DiskSizeLabel.Text = "Size of the disk:"
|
|
'
|
|
'SaveDisk
|
|
'
|
|
Me.SaveDisk.Location = New System.Drawing.Point(395, 68)
|
|
Me.SaveDisk.Name = "SaveDisk"
|
|
Me.SaveDisk.Size = New System.Drawing.Size(75, 23)
|
|
Me.SaveDisk.TabIndex = 6
|
|
Me.SaveDisk.Text = "Browse..."
|
|
Me.SaveDisk.UseVisualStyleBackColor = True
|
|
'
|
|
'DiskPath
|
|
'
|
|
Me.DiskPath.Location = New System.Drawing.Point(25, 68)
|
|
Me.DiskPath.Name = "DiskPath"
|
|
Me.DiskPath.Size = New System.Drawing.Size(364, 20)
|
|
Me.DiskPath.TabIndex = 5
|
|
'
|
|
'CreateDiskDescription
|
|
'
|
|
Me.CreateDiskDescription.Location = New System.Drawing.Point(22, 24)
|
|
Me.CreateDiskDescription.Name = "CreateDiskDescription"
|
|
Me.CreateDiskDescription.Size = New System.Drawing.Size(450, 30)
|
|
Me.CreateDiskDescription.TabIndex = 0
|
|
Me.CreateDiskDescription.Text = "Click on Browse to set the path to your hard disk image. You can set the drop dow" & _
|
|
"n list to the emulator you are creating the disk for and get suggestions of reco" & _
|
|
"mmended sizes."
|
|
'
|
|
'DescriptionContainer
|
|
'
|
|
Me.DescriptionContainer.BackColor = System.Drawing.Color.White
|
|
Me.DescriptionContainer.Controls.Add(Me.Description)
|
|
Me.DescriptionContainer.Controls.Add(Me.DescriptionName)
|
|
Me.DescriptionContainer.Location = New System.Drawing.Point(-1, -8)
|
|
Me.DescriptionContainer.Name = "DescriptionContainer"
|
|
Me.DescriptionContainer.Size = New System.Drawing.Size(499, 67)
|
|
Me.DescriptionContainer.TabIndex = 0
|
|
Me.DescriptionContainer.TabStop = False
|
|
'
|
|
'Description
|
|
'
|
|
Me.Description.Location = New System.Drawing.Point(48, 34)
|
|
Me.Description.Name = "Description"
|
|
Me.Description.Size = New System.Drawing.Size(423, 30)
|
|
Me.Description.TabIndex = 1
|
|
Me.Description.Text = "Set the size and location for your new hard disk image."
|
|
'
|
|
'DescriptionName
|
|
'
|
|
Me.DescriptionName.AutoSize = True
|
|
Me.DescriptionName.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.DescriptionName.Location = New System.Drawing.Point(23, 20)
|
|
Me.DescriptionName.Name = "DescriptionName"
|
|
Me.DescriptionName.Size = New System.Drawing.Size(134, 13)
|
|
Me.DescriptionName.TabIndex = 0
|
|
Me.DescriptionName.Text = "Route and size of disk"
|
|
'
|
|
'Save
|
|
'
|
|
Me.Save.Filter = "Disk file|*.dsk|Hard disk Image|*.img|RAW hard disk data|*.raw"
|
|
Me.Save.FilterIndex = 2
|
|
Me.Save.RestoreDirectory = True
|
|
Me.Save.SupportMultiDottedExtensions = True
|
|
'
|
|
'EndWizard
|
|
'
|
|
Me.EndWizard.BackColor = System.Drawing.Color.White
|
|
Me.EndWizard.BackgroundImage = Global.VirtualMac.My.Resources.Resources.NewDisk
|
|
Me.EndWizard.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
|
|
Me.EndWizard.Controls.Add(Me.EndTitle)
|
|
Me.EndWizard.Controls.Add(Me.EndDefSize)
|
|
Me.EndWizard.Controls.Add(Me.EndDefSizeLabel)
|
|
Me.EndWizard.Controls.Add(Me.EndInfoFinish)
|
|
Me.EndWizard.Controls.Add(Me.EndDescription)
|
|
Me.EndWizard.Controls.Add(Me.EndDefPathLabel)
|
|
Me.EndWizard.Controls.Add(Me.EndDefPath)
|
|
Me.EndWizard.Location = New System.Drawing.Point(0, 0)
|
|
Me.EndWizard.Margin = New System.Windows.Forms.Padding(0)
|
|
Me.EndWizard.Name = "EndWizard"
|
|
Me.EndWizard.Size = New System.Drawing.Size(500, 310)
|
|
Me.EndWizard.TabIndex = 5
|
|
Me.EndWizard.Visible = False
|
|
'
|
|
'EndTitle
|
|
'
|
|
Me.EndTitle.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.EndTitle.Location = New System.Drawing.Point(170, 15)
|
|
Me.EndTitle.Name = "EndTitle"
|
|
Me.EndTitle.Size = New System.Drawing.Size(280, 25)
|
|
Me.EndTitle.TabIndex = 0
|
|
Me.EndTitle.Text = "Completing the New Disk Wizard"
|
|
'
|
|
'EndDefSize
|
|
'
|
|
Me.EndDefSize.AutoSize = True
|
|
Me.EndDefSize.Location = New System.Drawing.Point(230, 130)
|
|
Me.EndDefSize.Name = "EndDefSize"
|
|
Me.EndDefSize.Size = New System.Drawing.Size(32, 13)
|
|
Me.EndDefSize.TabIndex = 8
|
|
Me.EndDefSize.Text = "0 MB"
|
|
'
|
|
'EndDefSizeLabel
|
|
'
|
|
Me.EndDefSizeLabel.AutoSize = True
|
|
Me.EndDefSizeLabel.Location = New System.Drawing.Point(180, 130)
|
|
Me.EndDefSizeLabel.Name = "EndDefSizeLabel"
|
|
Me.EndDefSizeLabel.Size = New System.Drawing.Size(30, 13)
|
|
Me.EndDefSizeLabel.TabIndex = 4
|
|
Me.EndDefSizeLabel.Text = "Size:"
|
|
'
|
|
'EndInfoFinish
|
|
'
|
|
Me.EndInfoFinish.Location = New System.Drawing.Point(170, 180)
|
|
Me.EndInfoFinish.Name = "EndInfoFinish"
|
|
Me.EndInfoFinish.Size = New System.Drawing.Size(280, 15)
|
|
Me.EndInfoFinish.TabIndex = 5
|
|
Me.EndInfoFinish.Text = "To close this wizard and create the disk, click Finish."
|
|
'
|
|
'EndDescription
|
|
'
|
|
Me.EndDescription.Location = New System.Drawing.Point(170, 65)
|
|
Me.EndDescription.Name = "EndDescription"
|
|
Me.EndDescription.Size = New System.Drawing.Size(300, 30)
|
|
Me.EndDescription.TabIndex = 1
|
|
Me.EndDescription.Text = "You have succefully completed the New Disk Wizard. Your new disk image will be cr" & _
|
|
"eated with the following parameters:"
|
|
'
|
|
'EndDefPathLabel
|
|
'
|
|
Me.EndDefPathLabel.AutoSize = True
|
|
Me.EndDefPathLabel.Location = New System.Drawing.Point(180, 110)
|
|
Me.EndDefPathLabel.Name = "EndDefPathLabel"
|
|
Me.EndDefPathLabel.Size = New System.Drawing.Size(38, 13)
|
|
Me.EndDefPathLabel.TabIndex = 3
|
|
Me.EndDefPathLabel.Text = "Name:"
|
|
'
|
|
'EndDefPath
|
|
'
|
|
Me.EndDefPath.Location = New System.Drawing.Point(230, 110)
|
|
Me.EndDefPath.Name = "EndDefPath"
|
|
Me.EndDefPath.Size = New System.Drawing.Size(230, 13)
|
|
Me.EndDefPath.TabIndex = 7
|
|
Me.EndDefPath.Text = "Unknown"
|
|
'
|
|
'CreateDiskInBackground
|
|
'
|
|
'
|
|
'frmNewDisk
|
|
'
|
|
Me.AcceptButton = Me.cmdNext
|
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.CancelButton = Me.cmdCancel
|
|
Me.ClientSize = New System.Drawing.Size(499, 362)
|
|
Me.ControlBox = False
|
|
Me.Controls.Add(Me.Wizard)
|
|
Me.Controls.Add(Me.EndWizard)
|
|
Me.Controls.Add(Me.Welcome)
|
|
Me.Controls.Add(Me.FormButtons)
|
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
|
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
|
Me.MaximizeBox = False
|
|
Me.MinimizeBox = False
|
|
Me.Name = "frmNewDisk"
|
|
Me.Text = "New Disk Wizard"
|
|
Me.Welcome.ResumeLayout(False)
|
|
Me.FormButtons.ResumeLayout(False)
|
|
Me.Wizard.ResumeLayout(False)
|
|
Me.CreateDisk.ResumeLayout(False)
|
|
Me.CreateDisk.PerformLayout()
|
|
CType(Me.DiskSize, System.ComponentModel.ISupportInitialize).EndInit()
|
|
Me.DescriptionContainer.ResumeLayout(False)
|
|
Me.DescriptionContainer.PerformLayout()
|
|
Me.EndWizard.ResumeLayout(False)
|
|
Me.EndWizard.PerformLayout()
|
|
Me.ResumeLayout(False)
|
|
|
|
End Sub
|
|
Friend WithEvents Welcome As System.Windows.Forms.Panel
|
|
Friend WithEvents WelcomeDescription As System.Windows.Forms.Label
|
|
Friend WithEvents WelcomeTitle As System.Windows.Forms.Label
|
|
Friend WithEvents FormButtons As System.Windows.Forms.GroupBox
|
|
Friend WithEvents cmdCancel As System.Windows.Forms.Button
|
|
Friend WithEvents cmdNext As System.Windows.Forms.Button
|
|
Friend WithEvents cmdBack As System.Windows.Forms.Button
|
|
Friend WithEvents Wizard As System.Windows.Forms.Panel
|
|
Friend WithEvents CreateDisk As System.Windows.Forms.Panel
|
|
Friend WithEvents SaveDisk As System.Windows.Forms.Button
|
|
Friend WithEvents DiskPath As System.Windows.Forms.TextBox
|
|
Friend WithEvents CreateDiskDescription As System.Windows.Forms.Label
|
|
Friend WithEvents DescriptionContainer As System.Windows.Forms.GroupBox
|
|
Friend WithEvents Description As System.Windows.Forms.Label
|
|
Friend WithEvents DescriptionName As System.Windows.Forms.Label
|
|
Friend WithEvents DiskMBLabel As System.Windows.Forms.Label
|
|
Friend WithEvents DiskSize As System.Windows.Forms.NumericUpDown
|
|
Friend WithEvents DiskSizeLabel As System.Windows.Forms.Label
|
|
Friend WithEvents Save As System.Windows.Forms.SaveFileDialog
|
|
Friend WithEvents DiskSizeDefaults As System.Windows.Forms.ComboBox
|
|
Friend WithEvents EndWizard As System.Windows.Forms.Panel
|
|
Friend WithEvents EndDefSize As System.Windows.Forms.Label
|
|
Friend WithEvents EndDefPath As System.Windows.Forms.Label
|
|
Friend WithEvents EndInfoFinish As System.Windows.Forms.Label
|
|
Friend WithEvents EndDefSizeLabel As System.Windows.Forms.Label
|
|
Friend WithEvents EndDefPathLabel As System.Windows.Forms.Label
|
|
Friend WithEvents EndDescription As System.Windows.Forms.Label
|
|
Friend WithEvents EndTitle As System.Windows.Forms.Label
|
|
Friend WithEvents CreateDiskInBackground As System.ComponentModel.BackgroundWorker
|
|
End Class
|