CreateDiskImageForm.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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.saveVirtualDiskFileDialog = new System.Windows.Forms.SaveFileDialog();
  30. this.numericDiskSize = new System.Windows.Forms.NumericUpDown();
  31. this.lblSize = new System.Windows.Forms.Label();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.lblFilePath = new System.Windows.Forms.Label();
  34. this.txtFilePath = new System.Windows.Forms.TextBox();
  35. this.btnBrowse = new System.Windows.Forms.Button();
  36. this.btnOK = new System.Windows.Forms.Button();
  37. this.btnCancel = new System.Windows.Forms.Button();
  38. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // saveVirtualDiskFileDialog
  42. //
  43. this.saveVirtualDiskFileDialog.FileName = "Disk.vhd";
  44. this.saveVirtualDiskFileDialog.Filter = "Virtual Hard Disk (*.vhd)|*.vhd";
  45. //
  46. // numericDiskSize
  47. //
  48. this.numericDiskSize.Location = new System.Drawing.Point(56, 41);
  49. this.numericDiskSize.Maximum = new decimal(new int[] {
  50. 100000000,
  51. 0,
  52. 0,
  53. 0});
  54. this.numericDiskSize.Minimum = new decimal(new int[] {
  55. 1,
  56. 0,
  57. 0,
  58. 0});
  59. this.numericDiskSize.Name = "numericDiskSize";
  60. this.numericDiskSize.Size = new System.Drawing.Size(86, 20);
  61. this.numericDiskSize.TabIndex = 0;
  62. this.numericDiskSize.ThousandsSeparator = true;
  63. this.numericDiskSize.Value = new decimal(new int[] {
  64. 100,
  65. 0,
  66. 0,
  67. 0});
  68. //
  69. // lblSize
  70. //
  71. this.lblSize.AutoSize = true;
  72. this.lblSize.Location = new System.Drawing.Point(12, 43);
  73. this.lblSize.Name = "lblSize";
  74. this.lblSize.Size = new System.Drawing.Size(30, 13);
  75. this.lblSize.TabIndex = 1;
  76. this.lblSize.Text = "Size:";
  77. //
  78. // label1
  79. //
  80. this.label1.AutoSize = true;
  81. this.label1.Location = new System.Drawing.Point(148, 43);
  82. this.label1.Name = "label1";
  83. this.label1.Size = new System.Drawing.Size(23, 13);
  84. this.label1.TabIndex = 2;
  85. this.label1.Text = "MB";
  86. //
  87. // lblFilePath
  88. //
  89. this.lblFilePath.AutoSize = true;
  90. this.lblFilePath.Location = new System.Drawing.Point(12, 18);
  91. this.lblFilePath.Name = "lblFilePath";
  92. this.lblFilePath.Size = new System.Drawing.Size(26, 13);
  93. this.lblFilePath.TabIndex = 3;
  94. this.lblFilePath.Text = "File:";
  95. //
  96. // txtFilePath
  97. //
  98. this.txtFilePath.Location = new System.Drawing.Point(56, 15);
  99. this.txtFilePath.Name = "txtFilePath";
  100. this.txtFilePath.Size = new System.Drawing.Size(243, 20);
  101. this.txtFilePath.TabIndex = 4;
  102. //
  103. // btnBrowse
  104. //
  105. this.btnBrowse.Location = new System.Drawing.Point(305, 13);
  106. this.btnBrowse.Name = "btnBrowse";
  107. this.btnBrowse.Size = new System.Drawing.Size(75, 23);
  108. this.btnBrowse.TabIndex = 5;
  109. this.btnBrowse.Text = "Browse..";
  110. this.btnBrowse.UseVisualStyleBackColor = true;
  111. this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
  112. //
  113. // btnOK
  114. //
  115. this.btnOK.Location = new System.Drawing.Point(224, 88);
  116. this.btnOK.Name = "btnOK";
  117. this.btnOK.Size = new System.Drawing.Size(75, 23);
  118. this.btnOK.TabIndex = 6;
  119. this.btnOK.Text = "OK";
  120. this.btnOK.UseVisualStyleBackColor = true;
  121. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  122. //
  123. // btnCancel
  124. //
  125. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  126. this.btnCancel.Location = new System.Drawing.Point(305, 88);
  127. this.btnCancel.Name = "btnCancel";
  128. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  129. this.btnCancel.TabIndex = 7;
  130. this.btnCancel.Text = "Cancel";
  131. this.btnCancel.UseVisualStyleBackColor = true;
  132. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  133. //
  134. // CreateDiskImageForm
  135. //
  136. this.AcceptButton = this.btnOK;
  137. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  138. this.CancelButton = this.btnCancel;
  139. this.ClientSize = new System.Drawing.Size(394, 125);
  140. this.Controls.Add(this.btnCancel);
  141. this.Controls.Add(this.btnOK);
  142. this.Controls.Add(this.btnBrowse);
  143. this.Controls.Add(this.txtFilePath);
  144. this.Controls.Add(this.lblFilePath);
  145. this.Controls.Add(this.label1);
  146. this.Controls.Add(this.lblSize);
  147. this.Controls.Add(this.numericDiskSize);
  148. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  149. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  150. this.MaximizeBox = false;
  151. this.MaximumSize = new System.Drawing.Size(400, 150);
  152. this.MinimumSize = new System.Drawing.Size(400, 150);
  153. this.Name = "CreateDiskImageForm";
  154. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  155. this.Text = "Create Virtual Disk";
  156. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CreateDiskImageForm_FormClosing);
  157. ((System.ComponentModel.ISupportInitialize)(this.numericDiskSize)).EndInit();
  158. this.ResumeLayout(false);
  159. this.PerformLayout();
  160. }
  161. #endregion
  162. private System.Windows.Forms.SaveFileDialog saveVirtualDiskFileDialog;
  163. private System.Windows.Forms.NumericUpDown numericDiskSize;
  164. private System.Windows.Forms.Label lblSize;
  165. private System.Windows.Forms.Label label1;
  166. private System.Windows.Forms.Label lblFilePath;
  167. private System.Windows.Forms.TextBox txtFilePath;
  168. private System.Windows.Forms.Button btnBrowse;
  169. private System.Windows.Forms.Button btnOK;
  170. private System.Windows.Forms.Button btnCancel;
  171. }
  172. }