|
@@ -31,9 +31,10 @@ namespace ISCSIConsole
|
|
|
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.label1 = 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();
|
|
|
//
|
|
@@ -69,15 +70,6 @@ namespace ISCSIConsole
|
|
|
this.lblSize.TabIndex = 1;
|
|
|
this.lblSize.Text = "Size:";
|
|
|
//
|
|
|
- // label1
|
|
|
- //
|
|
|
- this.label1.AutoSize = true;
|
|
|
- this.label1.Location = new System.Drawing.Point(148, 18);
|
|
|
- this.label1.Name = "label1";
|
|
|
- this.label1.Size = new System.Drawing.Size(17, 12);
|
|
|
- this.label1.TabIndex = 2;
|
|
|
- this.label1.Text = "MB";
|
|
|
- //
|
|
|
// btnOK
|
|
|
//
|
|
|
this.btnOK.Location = new System.Drawing.Point(224, 88);
|
|
@@ -99,15 +91,38 @@ namespace ISCSIConsole
|
|
|
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.label1);
|
|
|
this.Controls.Add(this.lblSize);
|
|
|
this.Controls.Add(this.numericDiskSize);
|
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
@@ -129,8 +144,9 @@ namespace ISCSIConsole
|
|
|
|
|
|
private System.Windows.Forms.NumericUpDown numericDiskSize;
|
|
|
private System.Windows.Forms.Label lblSize;
|
|
|
- private System.Windows.Forms.Label label1;
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
|
private System.Windows.Forms.Button btnCancel;
|
|
|
+ private System.Windows.Forms.RadioButton MbRadioButton;
|
|
|
+ private System.Windows.Forms.RadioButton GbRadioButton;
|
|
|
}
|
|
|
}
|