MainForm.Designer.cs 10 KB

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