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.

Form1.Designer.cs 14 kB

12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. namespace shadowsocks_csharp
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.label4 = new System.Windows.Forms.Label();
  35. this.textBox1 = new System.Windows.Forms.TextBox();
  36. this.textBox2 = new System.Windows.Forms.TextBox();
  37. this.textBox3 = new System.Windows.Forms.TextBox();
  38. this.textBox4 = new System.Windows.Forms.TextBox();
  39. this.panel1 = new System.Windows.Forms.Panel();
  40. this.button2 = new System.Windows.Forms.Button();
  41. this.button1 = new System.Windows.Forms.Button();
  42. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  43. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  44. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  45. this.Config = new System.Windows.Forms.ToolStripMenuItem();
  46. this.Quit = new System.Windows.Forms.ToolStripMenuItem();
  47. this.tableLayoutPanel1.SuspendLayout();
  48. this.panel1.SuspendLayout();
  49. this.tableLayoutPanel2.SuspendLayout();
  50. this.contextMenuStrip1.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // tableLayoutPanel1
  54. //
  55. this.tableLayoutPanel1.AutoSize = true;
  56. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  57. this.tableLayoutPanel1.ColumnCount = 2;
  58. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  59. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  60. this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
  61. this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
  62. this.tableLayoutPanel1.Controls.Add(this.label3, 0, 2);
  63. this.tableLayoutPanel1.Controls.Add(this.label4, 0, 3);
  64. this.tableLayoutPanel1.Controls.Add(this.textBox1, 1, 0);
  65. this.tableLayoutPanel1.Controls.Add(this.textBox2, 1, 1);
  66. this.tableLayoutPanel1.Controls.Add(this.textBox3, 1, 2);
  67. this.tableLayoutPanel1.Controls.Add(this.textBox4, 1, 3);
  68. this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
  69. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  70. this.tableLayoutPanel1.RowCount = 4;
  71. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  72. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  73. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  74. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  75. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  76. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  77. this.tableLayoutPanel1.Size = new System.Drawing.Size(256, 104);
  78. this.tableLayoutPanel1.TabIndex = 0;
  79. //
  80. // label1
  81. //
  82. this.label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
  83. this.label1.AutoSize = true;
  84. this.label1.Location = new System.Drawing.Point(12, 6);
  85. this.label1.Name = "label1";
  86. this.label1.Size = new System.Drawing.Size(51, 13);
  87. this.label1.TabIndex = 0;
  88. this.label1.Text = "Server IP";
  89. //
  90. // label2
  91. //
  92. this.label2.Anchor = System.Windows.Forms.AnchorStyles.Right;
  93. this.label2.AutoSize = true;
  94. this.label2.Location = new System.Drawing.Point(3, 32);
  95. this.label2.Name = "label2";
  96. this.label2.Size = new System.Drawing.Size(60, 13);
  97. this.label2.TabIndex = 1;
  98. this.label2.Text = "Server Port";
  99. //
  100. // label3
  101. //
  102. this.label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
  103. this.label3.AutoSize = true;
  104. this.label3.Location = new System.Drawing.Point(10, 58);
  105. this.label3.Name = "label3";
  106. this.label3.Size = new System.Drawing.Size(53, 13);
  107. this.label3.TabIndex = 2;
  108. this.label3.Text = "Password";
  109. //
  110. // label4
  111. //
  112. this.label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
  113. this.label4.AutoSize = true;
  114. this.label4.Location = new System.Drawing.Point(8, 84);
  115. this.label4.Name = "label4";
  116. this.label4.Size = new System.Drawing.Size(55, 13);
  117. this.label4.TabIndex = 3;
  118. this.label4.Text = "Proxy Port";
  119. //
  120. // textBox1
  121. //
  122. this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.Left;
  123. this.textBox1.Location = new System.Drawing.Point(69, 3);
  124. this.textBox1.Name = "textBox1";
  125. this.textBox1.Size = new System.Drawing.Size(184, 20);
  126. this.textBox1.TabIndex = 4;
  127. this.textBox1.WordWrap = false;
  128. //
  129. // textBox2
  130. //
  131. this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.Left;
  132. this.textBox2.Location = new System.Drawing.Point(69, 29);
  133. this.textBox2.Name = "textBox2";
  134. this.textBox2.Size = new System.Drawing.Size(184, 20);
  135. this.textBox2.TabIndex = 5;
  136. this.textBox2.WordWrap = false;
  137. //
  138. // textBox3
  139. //
  140. this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.Left;
  141. this.textBox3.Location = new System.Drawing.Point(69, 55);
  142. this.textBox3.Name = "textBox3";
  143. this.textBox3.Size = new System.Drawing.Size(184, 20);
  144. this.textBox3.TabIndex = 6;
  145. this.textBox3.WordWrap = false;
  146. //
  147. // textBox4
  148. //
  149. this.textBox4.Anchor = System.Windows.Forms.AnchorStyles.Left;
  150. this.textBox4.Location = new System.Drawing.Point(69, 81);
  151. this.textBox4.Name = "textBox4";
  152. this.textBox4.Size = new System.Drawing.Size(184, 20);
  153. this.textBox4.TabIndex = 7;
  154. this.textBox4.WordWrap = false;
  155. //
  156. // panel1
  157. //
  158. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  159. | System.Windows.Forms.AnchorStyles.Right)));
  160. this.panel1.AutoSize = true;
  161. this.panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  162. this.panel1.Controls.Add(this.button2);
  163. this.panel1.Controls.Add(this.button1);
  164. this.panel1.Location = new System.Drawing.Point(51, 3);
  165. this.panel1.Name = "panel1";
  166. this.panel1.Size = new System.Drawing.Size(164, 30);
  167. this.panel1.TabIndex = 1;
  168. //
  169. // button2
  170. //
  171. this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  172. this.button2.Location = new System.Drawing.Point(86, 3);
  173. this.button2.Name = "button2";
  174. this.button2.Size = new System.Drawing.Size(75, 23);
  175. this.button2.TabIndex = 1;
  176. this.button2.Text = "Cancel";
  177. this.button2.UseVisualStyleBackColor = true;
  178. //
  179. // button1
  180. //
  181. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  182. this.button1.Location = new System.Drawing.Point(4, 4);
  183. this.button1.Name = "button1";
  184. this.button1.Size = new System.Drawing.Size(75, 23);
  185. this.button1.TabIndex = 0;
  186. this.button1.Text = "OK";
  187. this.button1.UseVisualStyleBackColor = true;
  188. //
  189. // tableLayoutPanel2
  190. //
  191. this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  192. | System.Windows.Forms.AnchorStyles.Right)));
  193. this.tableLayoutPanel2.AutoSize = true;
  194. this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  195. this.tableLayoutPanel2.ColumnCount = 3;
  196. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  197. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  198. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  199. this.tableLayoutPanel2.Controls.Add(this.panel1, 1, 0);
  200. this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 122);
  201. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  202. this.tableLayoutPanel2.RowCount = 1;
  203. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  204. this.tableLayoutPanel2.Size = new System.Drawing.Size(266, 36);
  205. this.tableLayoutPanel2.TabIndex = 3;
  206. //
  207. // notifyIcon1
  208. //
  209. this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
  210. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  211. this.notifyIcon1.Text = "notifyIcon1";
  212. this.notifyIcon1.Visible = true;
  213. //
  214. // contextMenuStrip1
  215. //
  216. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  217. this.Config,
  218. this.Quit});
  219. this.contextMenuStrip1.Name = "contextMenuStrip1";
  220. this.contextMenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  221. this.contextMenuStrip1.ShowImageMargin = false;
  222. this.contextMenuStrip1.Size = new System.Drawing.Size(86, 48);
  223. //
  224. // Config
  225. //
  226. this.Config.Name = "Config";
  227. this.Config.Size = new System.Drawing.Size(127, 22);
  228. this.Config.Text = "Config";
  229. this.Config.Click += new System.EventHandler(this.Config_Click);
  230. //
  231. // Quit
  232. //
  233. this.Quit.Name = "Quit";
  234. this.Quit.Size = new System.Drawing.Size(127, 22);
  235. this.Quit.Text = "Quit";
  236. this.Quit.Click += new System.EventHandler(this.Quit_Click);
  237. //
  238. // Form1
  239. //
  240. this.AcceptButton = this.button1;
  241. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  242. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  243. this.AutoSize = true;
  244. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  245. this.CancelButton = this.button2;
  246. this.ClientSize = new System.Drawing.Size(291, 206);
  247. this.Controls.Add(this.tableLayoutPanel2);
  248. this.Controls.Add(this.tableLayoutPanel1);
  249. this.Name = "Form1";
  250. this.Text = "Shadowsocks";
  251. this.tableLayoutPanel1.ResumeLayout(false);
  252. this.tableLayoutPanel1.PerformLayout();
  253. this.panel1.ResumeLayout(false);
  254. this.tableLayoutPanel2.ResumeLayout(false);
  255. this.tableLayoutPanel2.PerformLayout();
  256. this.contextMenuStrip1.ResumeLayout(false);
  257. this.ResumeLayout(false);
  258. this.PerformLayout();
  259. }
  260. #endregion
  261. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  262. private System.Windows.Forms.Label label1;
  263. private System.Windows.Forms.Label label2;
  264. private System.Windows.Forms.Label label3;
  265. private System.Windows.Forms.Label label4;
  266. private System.Windows.Forms.TextBox textBox1;
  267. private System.Windows.Forms.TextBox textBox2;
  268. private System.Windows.Forms.TextBox textBox3;
  269. private System.Windows.Forms.TextBox textBox4;
  270. private System.Windows.Forms.Panel panel1;
  271. private System.Windows.Forms.Button button2;
  272. private System.Windows.Forms.Button button1;
  273. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  274. private System.Windows.Forms.NotifyIcon notifyIcon1;
  275. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  276. private System.Windows.Forms.ToolStripMenuItem Config;
  277. private System.Windows.Forms.ToolStripMenuItem Quit;
  278. }
  279. }

No Description

Contributors (1)