AddTargetForm.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. namespace ISCSIConsole
  2. {
  3. partial class AddTargetForm
  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.btnAddDiskImage = new System.Windows.Forms.Button();
  29. this.btnAddPhysicalDisk = new System.Windows.Forms.Button();
  30. this.txtTargetIQN = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.btnOK = new System.Windows.Forms.Button();
  34. this.btnCancel = new System.Windows.Forms.Button();
  35. this.listDisks = new System.Windows.Forms.ListView();
  36. this.columnDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  37. this.columnSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  38. this.btnAddVolume = new System.Windows.Forms.Button();
  39. this.btnCreateDiskImage = new System.Windows.Forms.Button();
  40. this.btnRemove = new System.Windows.Forms.Button();
  41. this.SuspendLayout();
  42. //
  43. // btnAddDiskImage
  44. //
  45. this.btnAddDiskImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  46. this.btnAddDiskImage.Location = new System.Drawing.Point(340, 73);
  47. this.btnAddDiskImage.Name = "btnAddDiskImage";
  48. this.btnAddDiskImage.Size = new System.Drawing.Size(140, 23);
  49. this.btnAddDiskImage.TabIndex = 4;
  50. this.btnAddDiskImage.Text = "Add Existing Virtual Disk";
  51. this.btnAddDiskImage.UseVisualStyleBackColor = true;
  52. this.btnAddDiskImage.Click += new System.EventHandler(this.btnAddDiskImage_Click);
  53. //
  54. // btnAddPhysicalDisk
  55. //
  56. this.btnAddPhysicalDisk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  57. this.btnAddPhysicalDisk.Location = new System.Drawing.Point(340, 102);
  58. this.btnAddPhysicalDisk.Name = "btnAddPhysicalDisk";
  59. this.btnAddPhysicalDisk.Size = new System.Drawing.Size(140, 23);
  60. this.btnAddPhysicalDisk.TabIndex = 5;
  61. this.btnAddPhysicalDisk.Text = "Add Physical Disk";
  62. this.btnAddPhysicalDisk.UseVisualStyleBackColor = true;
  63. this.btnAddPhysicalDisk.Visible = false;
  64. this.btnAddPhysicalDisk.Click += new System.EventHandler(this.btnAddPhysicalDisk_Click);
  65. //
  66. // txtTargetIQN
  67. //
  68. this.txtTargetIQN.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  69. | System.Windows.Forms.AnchorStyles.Right)));
  70. this.txtTargetIQN.Location = new System.Drawing.Point(57, 12);
  71. this.txtTargetIQN.Name = "txtTargetIQN";
  72. this.txtTargetIQN.Size = new System.Drawing.Size(275, 21);
  73. this.txtTargetIQN.TabIndex = 1;
  74. //
  75. // label1
  76. //
  77. this.label1.AutoSize = true;
  78. this.label1.Location = new System.Drawing.Point(12, 15);
  79. this.label1.Name = "label1";
  80. this.label1.Size = new System.Drawing.Size(29, 12);
  81. this.label1.TabIndex = 4;
  82. this.label1.Text = "IQN:";
  83. //
  84. // label2
  85. //
  86. this.label2.AutoSize = true;
  87. this.label2.Location = new System.Drawing.Point(12, 51);
  88. this.label2.Name = "label2";
  89. this.label2.Size = new System.Drawing.Size(41, 12);
  90. this.label2.TabIndex = 6;
  91. this.label2.Text = "Disks:";
  92. //
  93. // btnOK
  94. //
  95. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  96. this.btnOK.Location = new System.Drawing.Point(324, 194);
  97. this.btnOK.Name = "btnOK";
  98. this.btnOK.Size = new System.Drawing.Size(75, 23);
  99. this.btnOK.TabIndex = 8;
  100. this.btnOK.Text = "OK";
  101. this.btnOK.UseVisualStyleBackColor = true;
  102. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  103. //
  104. // btnCancel
  105. //
  106. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  107. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  108. this.btnCancel.Location = new System.Drawing.Point(405, 194);
  109. this.btnCancel.Name = "btnCancel";
  110. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  111. this.btnCancel.TabIndex = 9;
  112. this.btnCancel.Text = "Cancel";
  113. this.btnCancel.UseVisualStyleBackColor = true;
  114. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  115. //
  116. // listDisks
  117. //
  118. this.listDisks.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  119. | System.Windows.Forms.AnchorStyles.Left)
  120. | System.Windows.Forms.AnchorStyles.Right)));
  121. this.listDisks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  122. this.columnDescription,
  123. this.columnSize});
  124. this.listDisks.FullRowSelect = true;
  125. this.listDisks.Location = new System.Drawing.Point(57, 44);
  126. this.listDisks.MultiSelect = false;
  127. this.listDisks.Name = "listDisks";
  128. this.listDisks.Size = new System.Drawing.Size(275, 139);
  129. this.listDisks.TabIndex = 2;
  130. this.listDisks.UseCompatibleStateImageBehavior = false;
  131. this.listDisks.View = System.Windows.Forms.View.Details;
  132. this.listDisks.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.listDisks_ColumnWidthChanging);
  133. this.listDisks.SelectedIndexChanged += new System.EventHandler(this.listDisks_SelectedIndexChanged);
  134. //
  135. // columnDescription
  136. //
  137. this.columnDescription.Text = "Description";
  138. this.columnDescription.Width = 211;
  139. //
  140. // columnSize
  141. //
  142. this.columnSize.Text = "Size";
  143. //
  144. // btnAddVolume
  145. //
  146. this.btnAddVolume.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  147. this.btnAddVolume.Location = new System.Drawing.Point(340, 131);
  148. this.btnAddVolume.Name = "btnAddVolume";
  149. this.btnAddVolume.Size = new System.Drawing.Size(140, 23);
  150. this.btnAddVolume.TabIndex = 6;
  151. this.btnAddVolume.Text = "Add Volume";
  152. this.btnAddVolume.UseVisualStyleBackColor = true;
  153. this.btnAddVolume.Visible = false;
  154. this.btnAddVolume.Click += new System.EventHandler(this.btnAddVolume_Click);
  155. //
  156. // btnCreateDiskImage
  157. //
  158. this.btnCreateDiskImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  159. this.btnCreateDiskImage.Location = new System.Drawing.Point(340, 44);
  160. this.btnCreateDiskImage.Name = "btnCreateDiskImage";
  161. this.btnCreateDiskImage.Size = new System.Drawing.Size(140, 23);
  162. this.btnCreateDiskImage.TabIndex = 3;
  163. this.btnCreateDiskImage.Text = "Create Virtual Disk";
  164. this.btnCreateDiskImage.UseVisualStyleBackColor = true;
  165. this.btnCreateDiskImage.Click += new System.EventHandler(this.btnCreateDiskImage_Click);
  166. //
  167. // btnRemove
  168. //
  169. this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  170. this.btnRemove.Enabled = false;
  171. this.btnRemove.Location = new System.Drawing.Point(340, 160);
  172. this.btnRemove.Name = "btnRemove";
  173. this.btnRemove.Size = new System.Drawing.Size(140, 23);
  174. this.btnRemove.TabIndex = 7;
  175. this.btnRemove.Text = "Remove";
  176. this.btnRemove.UseVisualStyleBackColor = true;
  177. this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
  178. //
  179. // AddTargetForm
  180. //
  181. this.AcceptButton = this.btnOK;
  182. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  183. this.CancelButton = this.btnCancel;
  184. this.ClientSize = new System.Drawing.Size(484, 221);
  185. this.Controls.Add(this.btnRemove);
  186. this.Controls.Add(this.btnCreateDiskImage);
  187. this.Controls.Add(this.btnAddVolume);
  188. this.Controls.Add(this.listDisks);
  189. this.Controls.Add(this.btnCancel);
  190. this.Controls.Add(this.btnOK);
  191. this.Controls.Add(this.label2);
  192. this.Controls.Add(this.label1);
  193. this.Controls.Add(this.txtTargetIQN);
  194. this.Controls.Add(this.btnAddPhysicalDisk);
  195. this.Controls.Add(this.btnAddDiskImage);
  196. this.KeyPreview = true;
  197. this.MinimumSize = new System.Drawing.Size(500, 260);
  198. this.Name = "AddTargetForm";
  199. this.ShowInTaskbar = false;
  200. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  201. this.Text = "Add iSCSI Target";
  202. this.Deactivate += new System.EventHandler(this.AddTargetForm_Deactivate);
  203. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AddTargetForm_FormClosing);
  204. this.Load += new System.EventHandler(this.AddTargetForm_Load);
  205. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.AddTargetForm_KeyDown);
  206. this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AddTargetForm_KeyUp);
  207. this.ResumeLayout(false);
  208. this.PerformLayout();
  209. }
  210. #endregion
  211. private System.Windows.Forms.Button btnAddDiskImage;
  212. private System.Windows.Forms.Button btnAddPhysicalDisk;
  213. private System.Windows.Forms.TextBox txtTargetIQN;
  214. private System.Windows.Forms.Label label1;
  215. private System.Windows.Forms.Label label2;
  216. private System.Windows.Forms.Button btnOK;
  217. private System.Windows.Forms.Button btnCancel;
  218. private System.Windows.Forms.ListView listDisks;
  219. private System.Windows.Forms.ColumnHeader columnDescription;
  220. private System.Windows.Forms.ColumnHeader columnSize;
  221. private System.Windows.Forms.Button btnAddVolume;
  222. private System.Windows.Forms.Button btnCreateDiskImage;
  223. private System.Windows.Forms.Button btnRemove;
  224. }
  225. }