MainForm.Designer.cs 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. namespace ISCSIConsole
  2. {
  3. partial class MainForm
  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.btnStart = new System.Windows.Forms.Button();
  29. this.lblPort = new System.Windows.Forms.Label();
  30. this.txtPort = new System.Windows.Forms.TextBox();
  31. this.lblIPAddress = new System.Windows.Forms.Label();
  32. this.comboIPAddress = new System.Windows.Forms.ComboBox();
  33. this.btnAddTarget = new System.Windows.Forms.Button();
  34. this.lblTargets = new System.Windows.Forms.Label();
  35. this.btnRemoveTarget = new System.Windows.Forms.Button();
  36. this.listTargets = new System.Windows.Forms.ListBox();
  37. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  38. this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
  39. this.LoadConfigButton = new System.Windows.Forms.Button();
  40. this.statusStrip1.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // btnStart
  44. //
  45. this.btnStart.Location = new System.Drawing.Point(354, 12);
  46. this.btnStart.Name = "btnStart";
  47. this.btnStart.Size = new System.Drawing.Size(106, 23);
  48. this.btnStart.TabIndex = 0;
  49. this.btnStart.Text = "Start";
  50. this.btnStart.UseVisualStyleBackColor = true;
  51. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  52. //
  53. // lblPort
  54. //
  55. this.lblPort.AutoSize = true;
  56. this.lblPort.Location = new System.Drawing.Point(232, 17);
  57. this.lblPort.Name = "lblPort";
  58. this.lblPort.Size = new System.Drawing.Size(59, 12);
  59. this.lblPort.TabIndex = 1;
  60. this.lblPort.Text = "TCP Port:";
  61. //
  62. // txtPort
  63. //
  64. this.txtPort.Location = new System.Drawing.Point(291, 14);
  65. this.txtPort.Name = "txtPort";
  66. this.txtPort.Size = new System.Drawing.Size(53, 21);
  67. this.txtPort.TabIndex = 2;
  68. this.txtPort.Text = "3260";
  69. //
  70. // lblIPAddress
  71. //
  72. this.lblIPAddress.AutoSize = true;
  73. this.lblIPAddress.Location = new System.Drawing.Point(12, 16);
  74. this.lblIPAddress.Name = "lblIPAddress";
  75. this.lblIPAddress.Size = new System.Drawing.Size(71, 12);
  76. this.lblIPAddress.TabIndex = 3;
  77. this.lblIPAddress.Text = "IP Address:";
  78. //
  79. // comboIPAddress
  80. //
  81. this.comboIPAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  82. this.comboIPAddress.FormattingEnabled = true;
  83. this.comboIPAddress.Location = new System.Drawing.Point(79, 13);
  84. this.comboIPAddress.Name = "comboIPAddress";
  85. this.comboIPAddress.Size = new System.Drawing.Size(136, 20);
  86. this.comboIPAddress.TabIndex = 4;
  87. //
  88. // btnAddTarget
  89. //
  90. this.btnAddTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  91. this.btnAddTarget.Location = new System.Drawing.Point(354, 57);
  92. this.btnAddTarget.Name = "btnAddTarget";
  93. this.btnAddTarget.Size = new System.Drawing.Size(106, 23);
  94. this.btnAddTarget.TabIndex = 5;
  95. this.btnAddTarget.Text = "Add Target";
  96. this.btnAddTarget.UseVisualStyleBackColor = true;
  97. this.btnAddTarget.Click += new System.EventHandler(this.btnAddTarget_Click);
  98. //
  99. // lblTargets
  100. //
  101. this.lblTargets.AutoSize = true;
  102. this.lblTargets.Location = new System.Drawing.Point(12, 57);
  103. this.lblTargets.Name = "lblTargets";
  104. this.lblTargets.Size = new System.Drawing.Size(53, 12);
  105. this.lblTargets.TabIndex = 7;
  106. this.lblTargets.Text = "Targets:";
  107. //
  108. // btnRemoveTarget
  109. //
  110. this.btnRemoveTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  111. this.btnRemoveTarget.Enabled = false;
  112. this.btnRemoveTarget.Location = new System.Drawing.Point(354, 86);
  113. this.btnRemoveTarget.Name = "btnRemoveTarget";
  114. this.btnRemoveTarget.Size = new System.Drawing.Size(106, 23);
  115. this.btnRemoveTarget.TabIndex = 8;
  116. this.btnRemoveTarget.Text = "Remove Target";
  117. this.btnRemoveTarget.UseVisualStyleBackColor = true;
  118. this.btnRemoveTarget.Click += new System.EventHandler(this.btnRemoveTarget_Click);
  119. //
  120. // listTargets
  121. //
  122. this.listTargets.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  123. | System.Windows.Forms.AnchorStyles.Left)
  124. | System.Windows.Forms.AnchorStyles.Right)));
  125. this.listTargets.FormattingEnabled = true;
  126. this.listTargets.ItemHeight = 12;
  127. this.listTargets.Location = new System.Drawing.Point(79, 57);
  128. this.listTargets.Name = "listTargets";
  129. this.listTargets.Size = new System.Drawing.Size(265, 88);
  130. this.listTargets.TabIndex = 9;
  131. this.listTargets.SelectedIndexChanged += new System.EventHandler(this.listTargets_SelectedIndexChanged);
  132. //
  133. // statusStrip1
  134. //
  135. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  136. this.lblStatus});
  137. this.statusStrip1.Location = new System.Drawing.Point(0, 159);
  138. this.statusStrip1.Name = "statusStrip1";
  139. this.statusStrip1.Size = new System.Drawing.Size(464, 22);
  140. this.statusStrip1.TabIndex = 10;
  141. this.statusStrip1.Text = "statusStrip1";
  142. //
  143. // lblStatus
  144. //
  145. this.lblStatus.Name = "lblStatus";
  146. this.lblStatus.Size = new System.Drawing.Size(0, 17);
  147. //
  148. // LoadConfigButton
  149. //
  150. this.LoadConfigButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  151. this.LoadConfigButton.Location = new System.Drawing.Point(354, 122);
  152. this.LoadConfigButton.Name = "LoadConfigButton";
  153. this.LoadConfigButton.Size = new System.Drawing.Size(106, 23);
  154. this.LoadConfigButton.TabIndex = 8;
  155. this.LoadConfigButton.Text = "Load Config";
  156. this.LoadConfigButton.UseVisualStyleBackColor = true;
  157. this.LoadConfigButton.Click += new System.EventHandler(this.LoadConfigButton_Click);
  158. //
  159. // MainForm
  160. //
  161. this.AcceptButton = this.btnStart;
  162. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  163. this.ClientSize = new System.Drawing.Size(464, 181);
  164. this.Controls.Add(this.statusStrip1);
  165. this.Controls.Add(this.listTargets);
  166. this.Controls.Add(this.LoadConfigButton);
  167. this.Controls.Add(this.btnRemoveTarget);
  168. this.Controls.Add(this.lblTargets);
  169. this.Controls.Add(this.btnAddTarget);
  170. this.Controls.Add(this.comboIPAddress);
  171. this.Controls.Add(this.lblIPAddress);
  172. this.Controls.Add(this.txtPort);
  173. this.Controls.Add(this.lblPort);
  174. this.Controls.Add(this.btnStart);
  175. this.MinimumSize = new System.Drawing.Size(480, 220);
  176. this.Name = "MainForm";
  177. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  178. this.Text = "iSCSI Console";
  179. this.Load += new System.EventHandler(this.MainForm_Load);
  180. this.Shown += new System.EventHandler(this.MainForm_Shown);
  181. this.statusStrip1.ResumeLayout(false);
  182. this.statusStrip1.PerformLayout();
  183. this.ResumeLayout(false);
  184. this.PerformLayout();
  185. }
  186. #endregion
  187. private System.Windows.Forms.Button btnStart;
  188. private System.Windows.Forms.Label lblPort;
  189. private System.Windows.Forms.TextBox txtPort;
  190. private System.Windows.Forms.Label lblIPAddress;
  191. private System.Windows.Forms.ComboBox comboIPAddress;
  192. private System.Windows.Forms.Button btnAddTarget;
  193. private System.Windows.Forms.Label lblTargets;
  194. private System.Windows.Forms.Button btnRemoveTarget;
  195. private System.Windows.Forms.ListBox listTargets;
  196. private System.Windows.Forms.StatusStrip statusStrip1;
  197. private System.Windows.Forms.ToolStripStatusLabel lblStatus;
  198. private System.Windows.Forms.Button LoadConfigButton;
  199. }
  200. }