You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProxyForm.Designer.cs 15 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. namespace Shadowsocks.View
  2. {
  3. partial class ProxyForm
  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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  29. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  30. this.MyCancelButton = new System.Windows.Forms.Button();
  31. this.OKButton = new System.Windows.Forms.Button();
  32. this.UseProxyCheckBox = new System.Windows.Forms.CheckBox();
  33. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  34. this.ProxyAddrLabel = new System.Windows.Forms.Label();
  35. this.ProxyServerTextBox = new System.Windows.Forms.TextBox();
  36. this.ProxyPortLable = new System.Windows.Forms.Label();
  37. this.ProxyPortTextBox = new System.Windows.Forms.TextBox();
  38. this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  39. this.ProxyTypeLabel = new System.Windows.Forms.Label();
  40. this.ProxyTypeComboBox = new System.Windows.Forms.ComboBox();
  41. this.tableLayoutPanel1.SuspendLayout();
  42. this.tableLayoutPanel3.SuspendLayout();
  43. this.tableLayoutPanel2.SuspendLayout();
  44. this.tableLayoutPanel4.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // tableLayoutPanel1
  48. //
  49. this.tableLayoutPanel1.AutoSize = true;
  50. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  51. this.tableLayoutPanel1.ColumnCount = 1;
  52. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  53. this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 3);
  54. this.tableLayoutPanel1.Controls.Add(this.UseProxyCheckBox, 0, 0);
  55. this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 2);
  56. this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 1);
  57. this.tableLayoutPanel1.Location = new System.Drawing.Point(15, 15);
  58. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  59. this.tableLayoutPanel1.RowCount = 4;
  60. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  61. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  62. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  63. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  64. this.tableLayoutPanel1.Size = new System.Drawing.Size(395, 123);
  65. this.tableLayoutPanel1.TabIndex = 0;
  66. //
  67. // tableLayoutPanel3
  68. //
  69. this.tableLayoutPanel3.AutoSize = true;
  70. this.tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  71. this.tableLayoutPanel3.ColumnCount = 2;
  72. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  73. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  74. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  75. this.tableLayoutPanel3.Controls.Add(this.MyCancelButton, 1, 0);
  76. this.tableLayoutPanel3.Controls.Add(this.OKButton, 0, 0);
  77. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Right;
  78. this.tableLayoutPanel3.Location = new System.Drawing.Point(236, 94);
  79. this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
  80. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  81. this.tableLayoutPanel3.RowCount = 1;
  82. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
  83. this.tableLayoutPanel3.Size = new System.Drawing.Size(159, 26);
  84. this.tableLayoutPanel3.TabIndex = 9;
  85. //
  86. // MyCancelButton
  87. //
  88. this.MyCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  89. this.MyCancelButton.Dock = System.Windows.Forms.DockStyle.Right;
  90. this.MyCancelButton.Location = new System.Drawing.Point(84, 3);
  91. this.MyCancelButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 0);
  92. this.MyCancelButton.Name = "MyCancelButton";
  93. this.MyCancelButton.Size = new System.Drawing.Size(75, 23);
  94. this.MyCancelButton.TabIndex = 13;
  95. this.MyCancelButton.Text = "Cancel";
  96. this.MyCancelButton.UseVisualStyleBackColor = true;
  97. this.MyCancelButton.Click += new System.EventHandler(this.CancelButton_Click);
  98. //
  99. // OKButton
  100. //
  101. this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
  102. this.OKButton.Dock = System.Windows.Forms.DockStyle.Right;
  103. this.OKButton.Location = new System.Drawing.Point(3, 3);
  104. this.OKButton.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
  105. this.OKButton.Name = "OKButton";
  106. this.OKButton.Size = new System.Drawing.Size(75, 23);
  107. this.OKButton.TabIndex = 12;
  108. this.OKButton.Text = "OK";
  109. this.OKButton.UseVisualStyleBackColor = true;
  110. this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
  111. //
  112. // UseProxyCheckBox
  113. //
  114. this.UseProxyCheckBox.AutoSize = true;
  115. this.UseProxyCheckBox.Location = new System.Drawing.Point(3, 3);
  116. this.UseProxyCheckBox.Name = "UseProxyCheckBox";
  117. this.UseProxyCheckBox.Size = new System.Drawing.Size(78, 16);
  118. this.UseProxyCheckBox.TabIndex = 0;
  119. this.UseProxyCheckBox.Text = "Use Proxy";
  120. this.UseProxyCheckBox.UseVisualStyleBackColor = true;
  121. this.UseProxyCheckBox.CheckedChanged += new System.EventHandler(this.UseProxyCheckBox_CheckedChanged);
  122. //
  123. // tableLayoutPanel2
  124. //
  125. this.tableLayoutPanel2.AutoSize = true;
  126. this.tableLayoutPanel2.ColumnCount = 4;
  127. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  128. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  129. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  130. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  131. this.tableLayoutPanel2.Controls.Add(this.ProxyAddrLabel, 0, 0);
  132. this.tableLayoutPanel2.Controls.Add(this.ProxyServerTextBox, 1, 0);
  133. this.tableLayoutPanel2.Controls.Add(this.ProxyPortLable, 2, 0);
  134. this.tableLayoutPanel2.Controls.Add(this.ProxyPortTextBox, 3, 0);
  135. this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 61);
  136. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  137. this.tableLayoutPanel2.RowCount = 1;
  138. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  139. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  140. this.tableLayoutPanel2.Size = new System.Drawing.Size(389, 27);
  141. this.tableLayoutPanel2.TabIndex = 1;
  142. //
  143. // ProxyAddrLabel
  144. //
  145. this.ProxyAddrLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
  146. this.ProxyAddrLabel.AutoSize = true;
  147. this.ProxyAddrLabel.Location = new System.Drawing.Point(3, 7);
  148. this.ProxyAddrLabel.Name = "ProxyAddrLabel";
  149. this.ProxyAddrLabel.Size = new System.Drawing.Size(65, 12);
  150. this.ProxyAddrLabel.TabIndex = 0;
  151. this.ProxyAddrLabel.Text = "Proxy Addr";
  152. //
  153. // ProxyServerTextBox
  154. //
  155. this.ProxyServerTextBox.Location = new System.Drawing.Point(74, 3);
  156. this.ProxyServerTextBox.MaxLength = 512;
  157. this.ProxyServerTextBox.Name = "ProxyServerTextBox";
  158. this.ProxyServerTextBox.Size = new System.Drawing.Size(135, 21);
  159. this.ProxyServerTextBox.TabIndex = 1;
  160. this.ProxyServerTextBox.WordWrap = false;
  161. //
  162. // ProxyPortLable
  163. //
  164. this.ProxyPortLable.Anchor = System.Windows.Forms.AnchorStyles.Left;
  165. this.ProxyPortLable.AutoSize = true;
  166. this.ProxyPortLable.Location = new System.Drawing.Point(215, 7);
  167. this.ProxyPortLable.Name = "ProxyPortLable";
  168. this.ProxyPortLable.Size = new System.Drawing.Size(65, 12);
  169. this.ProxyPortLable.TabIndex = 2;
  170. this.ProxyPortLable.Text = "Proxy Port";
  171. //
  172. // ProxyPortTextBox
  173. //
  174. this.ProxyPortTextBox.Location = new System.Drawing.Point(286, 3);
  175. this.ProxyPortTextBox.MaxLength = 10;
  176. this.ProxyPortTextBox.Name = "ProxyPortTextBox";
  177. this.ProxyPortTextBox.Size = new System.Drawing.Size(100, 21);
  178. this.ProxyPortTextBox.TabIndex = 3;
  179. this.ProxyPortTextBox.WordWrap = false;
  180. //
  181. // tableLayoutPanel4
  182. //
  183. this.tableLayoutPanel4.AutoSize = true;
  184. this.tableLayoutPanel4.ColumnCount = 2;
  185. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  186. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  187. this.tableLayoutPanel4.Controls.Add(this.ProxyTypeLabel, 0, 0);
  188. this.tableLayoutPanel4.Controls.Add(this.ProxyTypeComboBox, 1, 0);
  189. this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 25);
  190. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  191. this.tableLayoutPanel4.RowCount = 1;
  192. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  193. this.tableLayoutPanel4.Size = new System.Drawing.Size(198, 30);
  194. this.tableLayoutPanel4.TabIndex = 10;
  195. //
  196. // ProxyTypeLabel
  197. //
  198. this.ProxyTypeLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
  199. this.ProxyTypeLabel.AutoSize = true;
  200. this.ProxyTypeLabel.Location = new System.Drawing.Point(3, 9);
  201. this.ProxyTypeLabel.Name = "ProxyTypeLabel";
  202. this.ProxyTypeLabel.Size = new System.Drawing.Size(65, 12);
  203. this.ProxyTypeLabel.TabIndex = 1;
  204. this.ProxyTypeLabel.Text = "Proxy Type";
  205. //
  206. // ProxyTypeComboBox
  207. //
  208. this.ProxyTypeComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
  209. this.ProxyTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  210. this.ProxyTypeComboBox.FormattingEnabled = true;
  211. this.ProxyTypeComboBox.Items.AddRange(new object[] {
  212. "SOCKS5",
  213. "HTTP"});
  214. this.ProxyTypeComboBox.Location = new System.Drawing.Point(74, 5);
  215. this.ProxyTypeComboBox.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  216. this.ProxyTypeComboBox.Name = "ProxyTypeComboBox";
  217. this.ProxyTypeComboBox.Size = new System.Drawing.Size(121, 20);
  218. this.ProxyTypeComboBox.TabIndex = 2;
  219. //
  220. // ProxyForm
  221. //
  222. this.AcceptButton = this.OKButton;
  223. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  224. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  225. this.AutoSize = true;
  226. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  227. this.CancelButton = this.MyCancelButton;
  228. this.ClientSize = new System.Drawing.Size(441, 165);
  229. this.Controls.Add(this.tableLayoutPanel1);
  230. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  231. this.MaximizeBox = false;
  232. this.MinimizeBox = false;
  233. this.Name = "ProxyForm";
  234. this.Padding = new System.Windows.Forms.Padding(12, 12, 12, 9);
  235. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  236. this.Text = "Edit Proxy";
  237. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ProxyForm_FormClosed);
  238. this.tableLayoutPanel1.ResumeLayout(false);
  239. this.tableLayoutPanel1.PerformLayout();
  240. this.tableLayoutPanel3.ResumeLayout(false);
  241. this.tableLayoutPanel2.ResumeLayout(false);
  242. this.tableLayoutPanel2.PerformLayout();
  243. this.tableLayoutPanel4.ResumeLayout(false);
  244. this.tableLayoutPanel4.PerformLayout();
  245. this.ResumeLayout(false);
  246. this.PerformLayout();
  247. }
  248. #endregion
  249. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  250. private System.Windows.Forms.CheckBox UseProxyCheckBox;
  251. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  252. private System.Windows.Forms.Label ProxyAddrLabel;
  253. private System.Windows.Forms.TextBox ProxyServerTextBox;
  254. private System.Windows.Forms.Label ProxyPortLable;
  255. private System.Windows.Forms.TextBox ProxyPortTextBox;
  256. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  257. private System.Windows.Forms.Button MyCancelButton;
  258. private System.Windows.Forms.Button OKButton;
  259. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  260. private System.Windows.Forms.Label ProxyTypeLabel;
  261. private System.Windows.Forms.ComboBox ProxyTypeComboBox;
  262. }
  263. }