CreateRAMDiskForm.Designer.cs 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. namespace ISCSIConsole
  2. {
  3. partial class CreateRAMDiskForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.numericDiskSize = new System.Windows.Forms.NumericUpDown();
  29. this.lblSize = new System.Windows.Forms.Label();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.btnCancel = new System.Windows.Forms.Button();
  32. this.MbRadioButton = new System.Windows.Forms.RadioButton();
  33. this.GbRadioButton = new System.Windows.Forms.RadioButton();
  34. this.BaseOnCheckBox = new System.Windows.Forms.CheckBox();
  35. this.ImageFileButton = new System.Windows.Forms.Button();
  36. this.ImageFileTextBox = new System.Windows.Forms.TextBox();
  37. this.DiskInfiValueLabel = new System.Windows.Forms.Label();
  38. this.DiskInfoLabel = new System.Windows.Forms.Label();
  39. this.openDiskImageDialog = new System.Windows.Forms.OpenFileDialog();
  40. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // numericDiskSize
  44. //
  45. this.numericDiskSize.Location = new System.Drawing.Point(56, 15);
  46. this.numericDiskSize.Maximum = new decimal(new int[] {
  47. 2047,
  48. 0,
  49. 0,
  50. 0});
  51. this.numericDiskSize.Minimum = new decimal(new int[] {
  52. 1,
  53. 0,
  54. 0,
  55. 0});
  56. this.numericDiskSize.Name = "numericDiskSize";
  57. this.numericDiskSize.Size = new System.Drawing.Size(86, 21);
  58. this.numericDiskSize.TabIndex = 0;
  59. this.numericDiskSize.ThousandsSeparator = true;
  60. this.numericDiskSize.Value = new decimal(new int[] {
  61. 512,
  62. 0,
  63. 0,
  64. 0});
  65. //
  66. // lblSize
  67. //
  68. this.lblSize.AutoSize = true;
  69. this.lblSize.Location = new System.Drawing.Point(12, 18);
  70. this.lblSize.Name = "lblSize";
  71. this.lblSize.Size = new System.Drawing.Size(35, 12);
  72. this.lblSize.TabIndex = 1;
  73. this.lblSize.Text = "Size:";
  74. //
  75. // btnOK
  76. //
  77. this.btnOK.Location = new System.Drawing.Point(316, 185);
  78. this.btnOK.Name = "btnOK";
  79. this.btnOK.Size = new System.Drawing.Size(75, 23);
  80. this.btnOK.TabIndex = 6;
  81. this.btnOK.Text = "OK";
  82. this.btnOK.UseVisualStyleBackColor = true;
  83. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  84. //
  85. // btnCancel
  86. //
  87. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  88. this.btnCancel.Location = new System.Drawing.Point(397, 185);
  89. this.btnCancel.Name = "btnCancel";
  90. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  91. this.btnCancel.TabIndex = 7;
  92. this.btnCancel.Text = "Cancel";
  93. this.btnCancel.UseVisualStyleBackColor = true;
  94. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  95. //
  96. // MbRadioButton
  97. //
  98. this.MbRadioButton.AutoSize = true;
  99. this.MbRadioButton.Checked = true;
  100. this.MbRadioButton.Location = new System.Drawing.Point(148, 16);
  101. this.MbRadioButton.Name = "MbRadioButton";
  102. this.MbRadioButton.Size = new System.Drawing.Size(35, 16);
  103. this.MbRadioButton.TabIndex = 8;
  104. this.MbRadioButton.TabStop = true;
  105. this.MbRadioButton.Text = "MB";
  106. this.MbRadioButton.UseVisualStyleBackColor = true;
  107. //
  108. // GbRadioButton
  109. //
  110. this.GbRadioButton.AutoSize = true;
  111. this.GbRadioButton.Location = new System.Drawing.Point(189, 16);
  112. this.GbRadioButton.Name = "GbRadioButton";
  113. this.GbRadioButton.Size = new System.Drawing.Size(35, 16);
  114. this.GbRadioButton.TabIndex = 9;
  115. this.GbRadioButton.Text = "GB";
  116. this.GbRadioButton.UseVisualStyleBackColor = true;
  117. //
  118. // BaseOnCheckBox
  119. //
  120. this.BaseOnCheckBox.AutoSize = true;
  121. this.BaseOnCheckBox.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
  122. this.BaseOnCheckBox.Location = new System.Drawing.Point(14, 44);
  123. this.BaseOnCheckBox.Name = "BaseOnCheckBox";
  124. this.BaseOnCheckBox.Size = new System.Drawing.Size(66, 16);
  125. this.BaseOnCheckBox.TabIndex = 10;
  126. this.BaseOnCheckBox.Text = "BaseOn:";
  127. this.BaseOnCheckBox.TextAlign = System.Drawing.ContentAlignment.TopLeft;
  128. this.BaseOnCheckBox.UseVisualStyleBackColor = true;
  129. this.BaseOnCheckBox.CheckedChanged += new System.EventHandler(this.BaseOnCheckBox_CheckedChanged);
  130. //
  131. // ImageFileButton
  132. //
  133. this.ImageFileButton.Location = new System.Drawing.Point(397, 40);
  134. this.ImageFileButton.Name = "ImageFileButton";
  135. this.ImageFileButton.Size = new System.Drawing.Size(75, 23);
  136. this.ImageFileButton.TabIndex = 12;
  137. this.ImageFileButton.Text = "Browse..";
  138. this.ImageFileButton.UseVisualStyleBackColor = true;
  139. this.ImageFileButton.Click += new System.EventHandler(this.ImageFileButton_Click);
  140. //
  141. // ImageFileTextBox
  142. //
  143. this.ImageFileTextBox.Enabled = false;
  144. this.ImageFileTextBox.Location = new System.Drawing.Point(86, 42);
  145. this.ImageFileTextBox.Name = "ImageFileTextBox";
  146. this.ImageFileTextBox.Size = new System.Drawing.Size(305, 21);
  147. this.ImageFileTextBox.TabIndex = 11;
  148. //
  149. // DiskInfiValueLabel
  150. //
  151. this.DiskInfiValueLabel.AutoSize = true;
  152. this.DiskInfiValueLabel.Location = new System.Drawing.Point(54, 88);
  153. this.DiskInfiValueLabel.Name = "DiskInfiValueLabel";
  154. this.DiskInfiValueLabel.Size = new System.Drawing.Size(29, 12);
  155. this.DiskInfiValueLabel.TabIndex = 13;
  156. this.DiskInfiValueLabel.Text = "____";
  157. //
  158. // DiskInfoLabel
  159. //
  160. this.DiskInfoLabel.AutoSize = true;
  161. this.DiskInfoLabel.Location = new System.Drawing.Point(12, 66);
  162. this.DiskInfoLabel.Name = "DiskInfoLabel";
  163. this.DiskInfoLabel.Size = new System.Drawing.Size(215, 12);
  164. this.DiskInfoLabel.TabIndex = 14;
  165. this.DiskInfoLabel.Text = "Disk Image Info (only dynamic bdd):";
  166. //
  167. // openDiskImageDialog
  168. //
  169. this.openDiskImageDialog.Filter = "Block Differencing Disk Image Files (*.bdd)|*.bdd";
  170. //
  171. // CreateRAMDiskForm
  172. //
  173. this.AcceptButton = this.btnOK;
  174. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  175. this.CancelButton = this.btnCancel;
  176. this.ClientSize = new System.Drawing.Size(484, 211);
  177. this.Controls.Add(this.BaseOnCheckBox);
  178. this.Controls.Add(this.DiskInfiValueLabel);
  179. this.Controls.Add(this.DiskInfoLabel);
  180. this.Controls.Add(this.ImageFileButton);
  181. this.Controls.Add(this.ImageFileTextBox);
  182. this.Controls.Add(this.GbRadioButton);
  183. this.Controls.Add(this.MbRadioButton);
  184. this.Controls.Add(this.btnCancel);
  185. this.Controls.Add(this.btnOK);
  186. this.Controls.Add(this.lblSize);
  187. this.Controls.Add(this.numericDiskSize);
  188. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  189. this.MaximizeBox = false;
  190. this.MaximumSize = new System.Drawing.Size(500, 250);
  191. this.MinimumSize = new System.Drawing.Size(500, 250);
  192. this.Name = "CreateRAMDiskForm";
  193. this.ShowInTaskbar = false;
  194. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  195. this.Text = "Create RAM Disk";
  196. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).EndInit();
  197. this.ResumeLayout(false);
  198. this.PerformLayout();
  199. }
  200. #endregion
  201. private System.Windows.Forms.NumericUpDown numericDiskSize;
  202. private System.Windows.Forms.Label lblSize;
  203. private System.Windows.Forms.Button btnOK;
  204. private System.Windows.Forms.Button btnCancel;
  205. private System.Windows.Forms.RadioButton MbRadioButton;
  206. private System.Windows.Forms.RadioButton GbRadioButton;
  207. private System.Windows.Forms.CheckBox BaseOnCheckBox;
  208. private System.Windows.Forms.Button ImageFileButton;
  209. private System.Windows.Forms.TextBox ImageFileTextBox;
  210. private System.Windows.Forms.Label DiskInfiValueLabel;
  211. private System.Windows.Forms.Label DiskInfoLabel;
  212. private System.Windows.Forms.OpenFileDialog openDiskImageDialog;
  213. }
  214. }