CreateDiskImageForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. namespace ISCSIConsole
  2. {
  3. partial class CreateDiskImageForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateDiskImageForm));
  29. this.ImageSizeUpDown = new System.Windows.Forms.NumericUpDown();
  30. this.lblSize = new System.Windows.Forms.Label();
  31. this.MbLabel = new System.Windows.Forms.Label();
  32. this.ImageFileLabel = new System.Windows.Forms.Label();
  33. this.ImageFileTextBox = new System.Windows.Forms.TextBox();
  34. this.ImageFileButton = new System.Windows.Forms.Button();
  35. this.btnOK = new System.Windows.Forms.Button();
  36. this.btnCancel = new System.Windows.Forms.Button();
  37. this.FormatLabel = new System.Windows.Forms.Label();
  38. this.FormatComboBox = new System.Windows.Forms.ComboBox();
  39. this.TypeLabel = new System.Windows.Forms.Label();
  40. this.TypeComboBox = new System.Windows.Forms.ComboBox();
  41. this.SnapshotLabel = new System.Windows.Forms.Label();
  42. this.SnapshotTextBox = new System.Windows.Forms.TextBox();
  43. this.SnapshotButton = new System.Windows.Forms.Button();
  44. this.BlockSizeLabel = new System.Windows.Forms.Label();
  45. this.KbLabel = new System.Windows.Forms.Label();
  46. this.AheadLabel = new System.Windows.Forms.Label();
  47. this.BlockSizeUpDown = new System.Windows.Forms.DomainUpDown();
  48. ((System.ComponentModel.ISupportInitialize)(this.ImageSizeUpDown)).BeginInit();
  49. this.SuspendLayout();
  50. //
  51. // ImageSizeUpDown
  52. //
  53. this.ImageSizeUpDown.Location = new System.Drawing.Point(106, 64);
  54. this.ImageSizeUpDown.Maximum = new decimal(new int[] {
  55. 16777215,
  56. 0,
  57. 0,
  58. 0});
  59. this.ImageSizeUpDown.Minimum = new decimal(new int[] {
  60. 1,
  61. 0,
  62. 0,
  63. 0});
  64. this.ImageSizeUpDown.Name = "ImageSizeUpDown";
  65. this.ImageSizeUpDown.Size = new System.Drawing.Size(77, 21);
  66. this.ImageSizeUpDown.TabIndex = 0;
  67. this.ImageSizeUpDown.ThousandsSeparator = true;
  68. this.ImageSizeUpDown.Value = new decimal(new int[] {
  69. 512,
  70. 0,
  71. 0,
  72. 0});
  73. this.ImageSizeUpDown.ValueChanged += new System.EventHandler(this.ImageSizeUpDown_ValueChanged);
  74. //
  75. // lblSize
  76. //
  77. this.lblSize.AutoSize = true;
  78. this.lblSize.Location = new System.Drawing.Point(12, 66);
  79. this.lblSize.Name = "lblSize";
  80. this.lblSize.Size = new System.Drawing.Size(35, 12);
  81. this.lblSize.TabIndex = 1;
  82. this.lblSize.Text = "Size:";
  83. //
  84. // MbLabel
  85. //
  86. this.MbLabel.AutoSize = true;
  87. this.MbLabel.Location = new System.Drawing.Point(189, 66);
  88. this.MbLabel.Name = "MbLabel";
  89. this.MbLabel.Size = new System.Drawing.Size(17, 12);
  90. this.MbLabel.TabIndex = 2;
  91. this.MbLabel.Text = "MB";
  92. //
  93. // ImageFileLabel
  94. //
  95. this.ImageFileLabel.AutoSize = true;
  96. this.ImageFileLabel.Location = new System.Drawing.Point(12, 40);
  97. this.ImageFileLabel.Name = "ImageFileLabel";
  98. this.ImageFileLabel.Size = new System.Drawing.Size(71, 12);
  99. this.ImageFileLabel.TabIndex = 3;
  100. this.ImageFileLabel.Text = "Image File:\r\n";
  101. //
  102. // ImageFileTextBox
  103. //
  104. this.ImageFileTextBox.Location = new System.Drawing.Point(107, 37);
  105. this.ImageFileTextBox.Name = "ImageFileTextBox";
  106. this.ImageFileTextBox.Size = new System.Drawing.Size(284, 21);
  107. this.ImageFileTextBox.TabIndex = 4;
  108. //
  109. // ImageFileButton
  110. //
  111. this.ImageFileButton.Location = new System.Drawing.Point(397, 35);
  112. this.ImageFileButton.Name = "ImageFileButton";
  113. this.ImageFileButton.Size = new System.Drawing.Size(75, 23);
  114. this.ImageFileButton.TabIndex = 5;
  115. this.ImageFileButton.Text = "Browse..";
  116. this.ImageFileButton.UseVisualStyleBackColor = true;
  117. this.ImageFileButton.Click += new System.EventHandler(this.ImageFileButton_Click);
  118. //
  119. // btnOK
  120. //
  121. this.btnOK.Location = new System.Drawing.Point(164, 161);
  122. this.btnOK.Name = "btnOK";
  123. this.btnOK.Size = new System.Drawing.Size(75, 23);
  124. this.btnOK.TabIndex = 6;
  125. this.btnOK.Text = "OK";
  126. this.btnOK.UseVisualStyleBackColor = true;
  127. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  128. //
  129. // btnCancel
  130. //
  131. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  132. this.btnCancel.Location = new System.Drawing.Point(245, 161);
  133. this.btnCancel.Name = "btnCancel";
  134. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  135. this.btnCancel.TabIndex = 7;
  136. this.btnCancel.Text = "Cancel";
  137. this.btnCancel.UseVisualStyleBackColor = true;
  138. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  139. //
  140. // FormatLabel
  141. //
  142. this.FormatLabel.AutoSize = true;
  143. this.FormatLabel.Location = new System.Drawing.Point(12, 14);
  144. this.FormatLabel.Name = "FormatLabel";
  145. this.FormatLabel.Size = new System.Drawing.Size(47, 12);
  146. this.FormatLabel.TabIndex = 1;
  147. this.FormatLabel.Text = "Format:";
  148. //
  149. // FormatComboBox
  150. //
  151. this.FormatComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  152. this.FormatComboBox.FormattingEnabled = true;
  153. this.FormatComboBox.Location = new System.Drawing.Point(107, 11);
  154. this.FormatComboBox.Name = "FormatComboBox";
  155. this.FormatComboBox.Size = new System.Drawing.Size(198, 20);
  156. this.FormatComboBox.TabIndex = 8;
  157. this.FormatComboBox.SelectedIndexChanged += new System.EventHandler(this.FormatComboBox_SelectedIndexChanged);
  158. //
  159. // TypeLabel
  160. //
  161. this.TypeLabel.AutoSize = true;
  162. this.TypeLabel.Location = new System.Drawing.Point(311, 14);
  163. this.TypeLabel.Name = "TypeLabel";
  164. this.TypeLabel.Size = new System.Drawing.Size(35, 12);
  165. this.TypeLabel.TabIndex = 1;
  166. this.TypeLabel.Text = "Type:";
  167. //
  168. // TypeComboBox
  169. //
  170. this.TypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  171. this.TypeComboBox.FormattingEnabled = true;
  172. this.TypeComboBox.Location = new System.Drawing.Point(352, 11);
  173. this.TypeComboBox.Name = "TypeComboBox";
  174. this.TypeComboBox.Size = new System.Drawing.Size(120, 20);
  175. this.TypeComboBox.TabIndex = 8;
  176. this.TypeComboBox.SelectedIndexChanged += new System.EventHandler(this.TypeComboBox_SelectedIndexChanged);
  177. //
  178. // SnapshotLabel
  179. //
  180. this.SnapshotLabel.AutoSize = true;
  181. this.SnapshotLabel.Location = new System.Drawing.Point(12, 94);
  182. this.SnapshotLabel.Name = "SnapshotLabel";
  183. this.SnapshotLabel.Size = new System.Drawing.Size(89, 12);
  184. this.SnapshotLabel.TabIndex = 3;
  185. this.SnapshotLabel.Text = "Snapshot File:";
  186. //
  187. // SnapshotTextBox
  188. //
  189. this.SnapshotTextBox.Location = new System.Drawing.Point(107, 91);
  190. this.SnapshotTextBox.Name = "SnapshotTextBox";
  191. this.SnapshotTextBox.Size = new System.Drawing.Size(284, 21);
  192. this.SnapshotTextBox.TabIndex = 4;
  193. //
  194. // SnapshotButton
  195. //
  196. this.SnapshotButton.Location = new System.Drawing.Point(397, 89);
  197. this.SnapshotButton.Name = "SnapshotButton";
  198. this.SnapshotButton.Size = new System.Drawing.Size(75, 23);
  199. this.SnapshotButton.TabIndex = 5;
  200. this.SnapshotButton.Text = "Browse..";
  201. this.SnapshotButton.UseVisualStyleBackColor = true;
  202. this.SnapshotButton.Click += new System.EventHandler(this.SnapshotButton_Click);
  203. //
  204. // BlockSizeLabel
  205. //
  206. this.BlockSizeLabel.AutoSize = true;
  207. this.BlockSizeLabel.Location = new System.Drawing.Point(13, 120);
  208. this.BlockSizeLabel.Name = "BlockSizeLabel";
  209. this.BlockSizeLabel.Size = new System.Drawing.Size(71, 12);
  210. this.BlockSizeLabel.TabIndex = 1;
  211. this.BlockSizeLabel.Text = "Block Size:";
  212. //
  213. // KbLabel
  214. //
  215. this.KbLabel.AutoSize = true;
  216. this.KbLabel.Location = new System.Drawing.Point(166, 120);
  217. this.KbLabel.Name = "KbLabel";
  218. this.KbLabel.Size = new System.Drawing.Size(17, 12);
  219. this.KbLabel.TabIndex = 2;
  220. this.KbLabel.Text = "KB";
  221. //
  222. // AheadLabel
  223. //
  224. this.AheadLabel.AutoSize = true;
  225. this.AheadLabel.Location = new System.Drawing.Point(203, 120);
  226. this.AheadLabel.Name = "AheadLabel";
  227. this.AheadLabel.Size = new System.Drawing.Size(77, 12);
  228. this.AheadLabel.TabIndex = 9;
  229. this.AheadLabel.Text = "____(____KB)";
  230. //
  231. // BlockSizeUpDown
  232. //
  233. this.BlockSizeUpDown.Items.Add("1024");
  234. this.BlockSizeUpDown.Items.Add("512");
  235. this.BlockSizeUpDown.Items.Add("256");
  236. this.BlockSizeUpDown.Items.Add("128");
  237. this.BlockSizeUpDown.Items.Add("64");
  238. this.BlockSizeUpDown.Items.Add("32");
  239. this.BlockSizeUpDown.Items.Add("16");
  240. this.BlockSizeUpDown.Location = new System.Drawing.Point(107, 118);
  241. this.BlockSizeUpDown.Name = "BlockSizeUpDown";
  242. this.BlockSizeUpDown.ReadOnly = true;
  243. this.BlockSizeUpDown.Size = new System.Drawing.Size(55, 21);
  244. this.BlockSizeUpDown.TabIndex = 10;
  245. this.BlockSizeUpDown.Text = "512";
  246. this.BlockSizeUpDown.SelectedItemChanged += new System.EventHandler(this.BlockSizeUpDown_SelectedItemChanged);
  247. //
  248. // CreateDiskImageForm
  249. //
  250. this.AcceptButton = this.btnOK;
  251. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  252. this.CancelButton = this.btnCancel;
  253. this.ClientSize = new System.Drawing.Size(484, 211);
  254. this.Controls.Add(this.BlockSizeUpDown);
  255. this.Controls.Add(this.AheadLabel);
  256. this.Controls.Add(this.TypeComboBox);
  257. this.Controls.Add(this.FormatComboBox);
  258. this.Controls.Add(this.btnCancel);
  259. this.Controls.Add(this.btnOK);
  260. this.Controls.Add(this.SnapshotButton);
  261. this.Controls.Add(this.ImageFileButton);
  262. this.Controls.Add(this.SnapshotTextBox);
  263. this.Controls.Add(this.SnapshotLabel);
  264. this.Controls.Add(this.ImageFileTextBox);
  265. this.Controls.Add(this.ImageFileLabel);
  266. this.Controls.Add(this.TypeLabel);
  267. this.Controls.Add(this.KbLabel);
  268. this.Controls.Add(this.MbLabel);
  269. this.Controls.Add(this.FormatLabel);
  270. this.Controls.Add(this.BlockSizeLabel);
  271. this.Controls.Add(this.lblSize);
  272. this.Controls.Add(this.ImageSizeUpDown);
  273. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  274. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  275. this.MaximizeBox = false;
  276. this.MaximumSize = new System.Drawing.Size(500, 250);
  277. this.MinimumSize = new System.Drawing.Size(500, 250);
  278. this.Name = "CreateDiskImageForm";
  279. this.ShowInTaskbar = false;
  280. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  281. this.Text = "Create Virtual Disk";
  282. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CreateDiskImageForm_FormClosing);
  283. this.Shown += new System.EventHandler(this.CreateDiskImageForm_Shown);
  284. ((System.ComponentModel.ISupportInitialize)(this.ImageSizeUpDown)).EndInit();
  285. this.ResumeLayout(false);
  286. this.PerformLayout();
  287. }
  288. #endregion
  289. private System.Windows.Forms.NumericUpDown ImageSizeUpDown;
  290. private System.Windows.Forms.Label lblSize;
  291. private System.Windows.Forms.Label MbLabel;
  292. private System.Windows.Forms.Label ImageFileLabel;
  293. private System.Windows.Forms.TextBox ImageFileTextBox;
  294. private System.Windows.Forms.Button ImageFileButton;
  295. private System.Windows.Forms.Button btnOK;
  296. private System.Windows.Forms.Button btnCancel;
  297. private System.Windows.Forms.Label FormatLabel;
  298. private System.Windows.Forms.ComboBox FormatComboBox;
  299. private System.Windows.Forms.Label TypeLabel;
  300. private System.Windows.Forms.ComboBox TypeComboBox;
  301. private System.Windows.Forms.Label SnapshotLabel;
  302. private System.Windows.Forms.TextBox SnapshotTextBox;
  303. private System.Windows.Forms.Button SnapshotButton;
  304. private System.Windows.Forms.Label BlockSizeLabel;
  305. private System.Windows.Forms.Label KbLabel;
  306. private System.Windows.Forms.Label AheadLabel;
  307. private System.Windows.Forms.DomainUpDown BlockSizeUpDown;
  308. }
  309. }