MainForm.Designer.cs 9.0 KB

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