123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- namespace ISCSIConsole
- {
- partial class CreateRAMDiskForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateRAMDiskForm));
- this.numericDiskSize = new System.Windows.Forms.NumericUpDown();
- this.lblSize = new System.Windows.Forms.Label();
- this.btnOK = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.MbRadioButton = new System.Windows.Forms.RadioButton();
- this.GbRadioButton = new System.Windows.Forms.RadioButton();
- ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).BeginInit();
- this.SuspendLayout();
- //
- // numericDiskSize
- //
- this.numericDiskSize.Location = new System.Drawing.Point(56, 15);
- this.numericDiskSize.Maximum = new decimal(new int[] {
- 2047,
- 0,
- 0,
- 0});
- this.numericDiskSize.Minimum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.numericDiskSize.Name = "numericDiskSize";
- this.numericDiskSize.Size = new System.Drawing.Size(86, 21);
- this.numericDiskSize.TabIndex = 0;
- this.numericDiskSize.ThousandsSeparator = true;
- this.numericDiskSize.Value = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- //
- // lblSize
- //
- this.lblSize.AutoSize = true;
- this.lblSize.Location = new System.Drawing.Point(12, 18);
- this.lblSize.Name = "lblSize";
- this.lblSize.Size = new System.Drawing.Size(35, 12);
- this.lblSize.TabIndex = 1;
- this.lblSize.Text = "Size:";
- //
- // btnOK
- //
- this.btnOK.Location = new System.Drawing.Point(224, 88);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 6;
- this.btnOK.Text = "OK";
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(305, 88);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 7;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // MbRadioButton
- //
- this.MbRadioButton.AutoSize = true;
- this.MbRadioButton.Checked = true;
- this.MbRadioButton.Location = new System.Drawing.Point(148, 16);
- this.MbRadioButton.Name = "MbRadioButton";
- this.MbRadioButton.Size = new System.Drawing.Size(35, 16);
- this.MbRadioButton.TabIndex = 8;
- this.MbRadioButton.TabStop = true;
- this.MbRadioButton.Text = "MB";
- this.MbRadioButton.UseVisualStyleBackColor = true;
- //
- // GbRadioButton
- //
- this.GbRadioButton.AutoSize = true;
- this.GbRadioButton.Location = new System.Drawing.Point(189, 16);
- this.GbRadioButton.Name = "GbRadioButton";
- this.GbRadioButton.Size = new System.Drawing.Size(35, 16);
- this.GbRadioButton.TabIndex = 9;
- this.GbRadioButton.Text = "GB";
- this.GbRadioButton.UseVisualStyleBackColor = true;
- //
- // CreateRAMDiskForm
- //
- this.AcceptButton = this.btnOK;
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(384, 111);
- this.Controls.Add(this.GbRadioButton);
- this.Controls.Add(this.MbRadioButton);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnOK);
- this.Controls.Add(this.lblSize);
- this.Controls.Add(this.numericDiskSize);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MaximumSize = new System.Drawing.Size(400, 150);
- this.MinimumSize = new System.Drawing.Size(400, 150);
- this.Name = "CreateRAMDiskForm";
- this.ShowInTaskbar = false;
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
- this.Text = "Create RAM Disk";
- ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.NumericUpDown numericDiskSize;
- private System.Windows.Forms.Label lblSize;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.RadioButton MbRadioButton;
- private System.Windows.Forms.RadioButton GbRadioButton;
- }
- }
|