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.

ConfigForm.Designer.cs 30 kB

11 years ago
13 years ago
11 years ago
13 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
13 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
13 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
13 years ago
13 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. namespace Shadowsocks.View
  2. {
  3. partial class ConfigForm
  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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  29. this.RemarksTextBox = new System.Windows.Forms.TextBox();
  30. this.RemarksLabel = new System.Windows.Forms.Label();
  31. this.IPLabel = new System.Windows.Forms.Label();
  32. this.ServerPortLabel = new System.Windows.Forms.Label();
  33. this.PasswordLabel = new System.Windows.Forms.Label();
  34. this.IPTextBox = new System.Windows.Forms.TextBox();
  35. this.ServerPortTextBox = new System.Windows.Forms.TextBox();
  36. this.PasswordTextBox = new System.Windows.Forms.TextBox();
  37. this.EncryptionLabel = new System.Windows.Forms.Label();
  38. this.EncryptionSelect = new System.Windows.Forms.ComboBox();
  39. this.panel2 = new System.Windows.Forms.Panel();
  40. this.OKButton = new System.Windows.Forms.Button();
  41. this.MyCancelButton = new System.Windows.Forms.Button();
  42. this.DeleteButton = new System.Windows.Forms.Button();
  43. this.AddButton = new System.Windows.Forms.Button();
  44. this.ServerGroupBox = new System.Windows.Forms.GroupBox();
  45. this.ServersListBox = new System.Windows.Forms.ListBox();
  46. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  47. this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
  48. this.MoveDownButton = new System.Windows.Forms.Button();
  49. this.MoveUpButton = new System.Windows.Forms.Button();
  50. this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
  51. this.ProxyPortTextBox = new System.Windows.Forms.TextBox();
  52. this.ProxyPortLabel = new System.Windows.Forms.Label();
  53. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  54. this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  55. this.tableLayoutPanel1.SuspendLayout();
  56. this.ServerGroupBox.SuspendLayout();
  57. this.tableLayoutPanel2.SuspendLayout();
  58. this.tableLayoutPanel6.SuspendLayout();
  59. this.tableLayoutPanel5.SuspendLayout();
  60. this.tableLayoutPanel3.SuspendLayout();
  61. this.tableLayoutPanel4.SuspendLayout();
  62. this.SuspendLayout();
  63. //
  64. // tableLayoutPanel1
  65. //
  66. this.tableLayoutPanel1.AutoSize = true;
  67. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  68. this.tableLayoutPanel1.ColumnCount = 2;
  69. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  70. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  71. this.tableLayoutPanel1.Controls.Add(this.RemarksTextBox, 1, 5);
  72. this.tableLayoutPanel1.Controls.Add(this.RemarksLabel, 0, 5);
  73. this.tableLayoutPanel1.Controls.Add(this.IPLabel, 0, 0);
  74. this.tableLayoutPanel1.Controls.Add(this.ServerPortLabel, 0, 1);
  75. this.tableLayoutPanel1.Controls.Add(this.PasswordLabel, 0, 2);
  76. this.tableLayoutPanel1.Controls.Add(this.IPTextBox, 1, 0);
  77. this.tableLayoutPanel1.Controls.Add(this.ServerPortTextBox, 1, 1);
  78. this.tableLayoutPanel1.Controls.Add(this.PasswordTextBox, 1, 2);
  79. this.tableLayoutPanel1.Controls.Add(this.EncryptionLabel, 0, 3);
  80. this.tableLayoutPanel1.Controls.Add(this.EncryptionSelect, 1, 3);
  81. this.tableLayoutPanel1.Location = new System.Drawing.Point(8, 21);
  82. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  83. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  84. this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(3);
  85. this.tableLayoutPanel1.RowCount = 6;
  86. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  87. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  88. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  89. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  90. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  91. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  92. this.tableLayoutPanel1.Size = new System.Drawing.Size(238, 137);
  93. this.tableLayoutPanel1.TabIndex = 0;
  94. //
  95. // RemarksTextBox
  96. //
  97. this.RemarksTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  98. this.RemarksTextBox.Location = new System.Drawing.Point(72, 111);
  99. this.RemarksTextBox.MaxLength = 32;
  100. this.RemarksTextBox.Name = "RemarksTextBox";
  101. this.RemarksTextBox.Size = new System.Drawing.Size(160, 20);
  102. this.RemarksTextBox.TabIndex = 10;
  103. this.RemarksTextBox.WordWrap = false;
  104. //
  105. // RemarksLabel
  106. //
  107. this.RemarksLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  108. this.RemarksLabel.AutoSize = true;
  109. this.RemarksLabel.Location = new System.Drawing.Point(17, 114);
  110. this.RemarksLabel.Name = "RemarksLabel";
  111. this.RemarksLabel.Size = new System.Drawing.Size(49, 13);
  112. this.RemarksLabel.TabIndex = 9;
  113. this.RemarksLabel.Text = "Remarks";
  114. //
  115. // IPLabel
  116. //
  117. this.IPLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  118. this.IPLabel.AutoSize = true;
  119. this.IPLabel.Location = new System.Drawing.Point(15, 9);
  120. this.IPLabel.Name = "IPLabel";
  121. this.IPLabel.Size = new System.Drawing.Size(51, 13);
  122. this.IPLabel.TabIndex = 0;
  123. this.IPLabel.Text = "Server IP";
  124. //
  125. // ServerPortLabel
  126. //
  127. this.ServerPortLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  128. this.ServerPortLabel.AutoSize = true;
  129. this.ServerPortLabel.Location = new System.Drawing.Point(6, 35);
  130. this.ServerPortLabel.Name = "ServerPortLabel";
  131. this.ServerPortLabel.Size = new System.Drawing.Size(60, 13);
  132. this.ServerPortLabel.TabIndex = 1;
  133. this.ServerPortLabel.Text = "Server Port";
  134. //
  135. // PasswordLabel
  136. //
  137. this.PasswordLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  138. this.PasswordLabel.AutoSize = true;
  139. this.PasswordLabel.Location = new System.Drawing.Point(13, 61);
  140. this.PasswordLabel.Name = "PasswordLabel";
  141. this.PasswordLabel.Size = new System.Drawing.Size(53, 13);
  142. this.PasswordLabel.TabIndex = 2;
  143. this.PasswordLabel.Text = "Password";
  144. //
  145. // IPTextBox
  146. //
  147. this.IPTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  148. this.IPTextBox.Location = new System.Drawing.Point(72, 6);
  149. this.IPTextBox.MaxLength = 512;
  150. this.IPTextBox.Name = "IPTextBox";
  151. this.IPTextBox.Size = new System.Drawing.Size(160, 20);
  152. this.IPTextBox.TabIndex = 0;
  153. this.IPTextBox.WordWrap = false;
  154. //
  155. // ServerPortTextBox
  156. //
  157. this.ServerPortTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  158. this.ServerPortTextBox.Location = new System.Drawing.Point(72, 32);
  159. this.ServerPortTextBox.MaxLength = 10;
  160. this.ServerPortTextBox.Name = "ServerPortTextBox";
  161. this.ServerPortTextBox.Size = new System.Drawing.Size(160, 20);
  162. this.ServerPortTextBox.TabIndex = 1;
  163. this.ServerPortTextBox.WordWrap = false;
  164. //
  165. // PasswordTextBox
  166. //
  167. this.PasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  168. this.PasswordTextBox.Location = new System.Drawing.Point(72, 58);
  169. this.PasswordTextBox.MaxLength = 256;
  170. this.PasswordTextBox.Name = "PasswordTextBox";
  171. this.PasswordTextBox.PasswordChar = '*';
  172. this.PasswordTextBox.Size = new System.Drawing.Size(160, 20);
  173. this.PasswordTextBox.TabIndex = 2;
  174. this.PasswordTextBox.WordWrap = false;
  175. //
  176. // EncryptionLabel
  177. //
  178. this.EncryptionLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  179. this.EncryptionLabel.AutoSize = true;
  180. this.EncryptionLabel.Location = new System.Drawing.Point(9, 88);
  181. this.EncryptionLabel.Name = "EncryptionLabel";
  182. this.EncryptionLabel.Size = new System.Drawing.Size(57, 13);
  183. this.EncryptionLabel.TabIndex = 8;
  184. this.EncryptionLabel.Text = "Encryption";
  185. //
  186. // EncryptionSelect
  187. //
  188. this.EncryptionSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  189. | System.Windows.Forms.AnchorStyles.Right)));
  190. this.EncryptionSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  191. this.EncryptionSelect.FormattingEnabled = true;
  192. this.EncryptionSelect.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  193. this.EncryptionSelect.ItemHeight = 13;
  194. this.EncryptionSelect.Items.AddRange(new object[] {
  195. "table",
  196. "rc4-md5",
  197. "salsa20",
  198. "chacha20",
  199. "aes-256-cfb",
  200. "aes-192-cfb",
  201. "aes-128-cfb",
  202. "rc4"});
  203. this.EncryptionSelect.Location = new System.Drawing.Point(72, 84);
  204. this.EncryptionSelect.Name = "EncryptionSelect";
  205. this.EncryptionSelect.Size = new System.Drawing.Size(160, 21);
  206. this.EncryptionSelect.TabIndex = 3;
  207. //
  208. // panel2
  209. //
  210. this.panel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
  211. this.panel2.AutoSize = true;
  212. this.panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  213. this.panel2.Location = new System.Drawing.Point(207, 187);
  214. this.panel2.Name = "panel2";
  215. this.panel2.Size = new System.Drawing.Size(0, 0);
  216. this.panel2.TabIndex = 1;
  217. //
  218. // OKButton
  219. //
  220. this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
  221. this.OKButton.Dock = System.Windows.Forms.DockStyle.Right;
  222. this.OKButton.Location = new System.Drawing.Point(3, 3);
  223. this.OKButton.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
  224. this.OKButton.Name = "OKButton";
  225. this.OKButton.Size = new System.Drawing.Size(75, 23);
  226. this.OKButton.TabIndex = 8;
  227. this.OKButton.Text = "OK";
  228. this.OKButton.UseVisualStyleBackColor = true;
  229. this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
  230. //
  231. // MyCancelButton
  232. //
  233. this.MyCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  234. this.MyCancelButton.Dock = System.Windows.Forms.DockStyle.Right;
  235. this.MyCancelButton.Location = new System.Drawing.Point(84, 3);
  236. this.MyCancelButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 0);
  237. this.MyCancelButton.Name = "MyCancelButton";
  238. this.MyCancelButton.Size = new System.Drawing.Size(75, 23);
  239. this.MyCancelButton.TabIndex = 9;
  240. this.MyCancelButton.Text = "Cancel";
  241. this.MyCancelButton.UseVisualStyleBackColor = true;
  242. this.MyCancelButton.Click += new System.EventHandler(this.CancelButton_Click);
  243. //
  244. // DeleteButton
  245. //
  246. this.DeleteButton.Dock = System.Windows.Forms.DockStyle.Right;
  247. this.DeleteButton.Location = new System.Drawing.Point(86, 6);
  248. this.DeleteButton.Margin = new System.Windows.Forms.Padding(3, 6, 0, 3);
  249. this.DeleteButton.Name = "DeleteButton";
  250. this.DeleteButton.Size = new System.Drawing.Size(80, 23);
  251. this.DeleteButton.TabIndex = 7;
  252. this.DeleteButton.Text = "&Delete";
  253. this.DeleteButton.UseVisualStyleBackColor = true;
  254. this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
  255. //
  256. // AddButton
  257. //
  258. this.AddButton.Dock = System.Windows.Forms.DockStyle.Left;
  259. this.AddButton.Location = new System.Drawing.Point(0, 6);
  260. this.AddButton.Margin = new System.Windows.Forms.Padding(0, 6, 3, 3);
  261. this.AddButton.Name = "AddButton";
  262. this.AddButton.Size = new System.Drawing.Size(80, 23);
  263. this.AddButton.TabIndex = 6;
  264. this.AddButton.Text = "&Add";
  265. this.AddButton.UseVisualStyleBackColor = true;
  266. this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
  267. //
  268. // ServerGroupBox
  269. //
  270. this.ServerGroupBox.AutoSize = true;
  271. this.ServerGroupBox.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  272. this.ServerGroupBox.Controls.Add(this.tableLayoutPanel1);
  273. this.ServerGroupBox.Location = new System.Drawing.Point(178, 0);
  274. this.ServerGroupBox.Margin = new System.Windows.Forms.Padding(12, 0, 0, 0);
  275. this.ServerGroupBox.Name = "ServerGroupBox";
  276. this.ServerGroupBox.Size = new System.Drawing.Size(249, 174);
  277. this.ServerGroupBox.TabIndex = 6;
  278. this.ServerGroupBox.TabStop = false;
  279. this.ServerGroupBox.Text = "Server";
  280. //
  281. // ServersListBox
  282. //
  283. this.ServersListBox.FormattingEnabled = true;
  284. this.ServersListBox.IntegralHeight = false;
  285. this.ServersListBox.ItemHeight = 12;
  286. this.ServersListBox.Location = new System.Drawing.Point(0, 0);
  287. this.ServersListBox.Margin = new System.Windows.Forms.Padding(0);
  288. this.ServersListBox.Name = "ServersListBox";
  289. this.ServersListBox.Size = new System.Drawing.Size(166, 148);
  290. this.ServersListBox.TabIndex = 5;
  291. this.ServersListBox.SelectedIndexChanged += new System.EventHandler(this.ServersListBox_SelectedIndexChanged);
  292. //
  293. // tableLayoutPanel2
  294. //
  295. this.tableLayoutPanel2.AutoSize = true;
  296. this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  297. this.tableLayoutPanel2.ColumnCount = 2;
  298. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  299. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  300. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel6, 0, 2);
  301. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel5, 1, 1);
  302. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 1, 2);
  303. this.tableLayoutPanel2.Controls.Add(this.ServersListBox, 0, 0);
  304. this.tableLayoutPanel2.Controls.Add(this.ServerGroupBox, 1, 0);
  305. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 1);
  306. this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 12);
  307. this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
  308. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  309. this.tableLayoutPanel2.RowCount = 3;
  310. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  311. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  312. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  313. this.tableLayoutPanel2.Size = new System.Drawing.Size(427, 238);
  314. this.tableLayoutPanel2.TabIndex = 7;
  315. //
  316. // tableLayoutPanel6
  317. //
  318. this.tableLayoutPanel6.AutoSize = true;
  319. this.tableLayoutPanel6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  320. this.tableLayoutPanel6.ColumnCount = 2;
  321. this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  322. this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  323. this.tableLayoutPanel6.Controls.Add(this.MoveDownButton, 1, 0);
  324. this.tableLayoutPanel6.Controls.Add(this.MoveUpButton, 0, 0);
  325. this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Top;
  326. this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 211);
  327. this.tableLayoutPanel6.Margin = new System.Windows.Forms.Padding(0);
  328. this.tableLayoutPanel6.Name = "tableLayoutPanel6";
  329. this.tableLayoutPanel6.RowCount = 1;
  330. this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle());
  331. this.tableLayoutPanel6.Size = new System.Drawing.Size(166, 32);
  332. this.tableLayoutPanel6.TabIndex = 10;
  333. //
  334. // MoveDownButton
  335. //
  336. this.MoveDownButton.Dock = System.Windows.Forms.DockStyle.Right;
  337. this.MoveDownButton.Location = new System.Drawing.Point(86, 6);
  338. this.MoveDownButton.Margin = new System.Windows.Forms.Padding(3, 6, 0, 3);
  339. this.MoveDownButton.Name = "MoveDownButton";
  340. this.MoveDownButton.Size = new System.Drawing.Size(80, 23);
  341. this.MoveDownButton.TabIndex = 7;
  342. this.MoveDownButton.Text = "Move D&own";
  343. this.MoveDownButton.UseVisualStyleBackColor = true;
  344. this.MoveDownButton.Click += new System.EventHandler(this.MoveDownButton_Click);
  345. //
  346. // MoveUpButton
  347. //
  348. this.MoveUpButton.Dock = System.Windows.Forms.DockStyle.Left;
  349. this.MoveUpButton.Location = new System.Drawing.Point(0, 6);
  350. this.MoveUpButton.Margin = new System.Windows.Forms.Padding(0, 6, 3, 3);
  351. this.MoveUpButton.Name = "MoveUpButton";
  352. this.MoveUpButton.Size = new System.Drawing.Size(80, 23);
  353. this.MoveUpButton.TabIndex = 6;
  354. this.MoveUpButton.Text = "Move &Up";
  355. this.MoveUpButton.UseVisualStyleBackColor = true;
  356. this.MoveUpButton.Click += new System.EventHandler(this.MoveUpButton_Click);
  357. //
  358. // tableLayoutPanel5
  359. //
  360. this.tableLayoutPanel5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  361. | System.Windows.Forms.AnchorStyles.Right)));
  362. this.tableLayoutPanel5.AutoSize = true;
  363. this.tableLayoutPanel5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  364. this.tableLayoutPanel5.ColumnCount = 2;
  365. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  366. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  367. this.tableLayoutPanel5.Controls.Add(this.ProxyPortTextBox, 1, 0);
  368. this.tableLayoutPanel5.Controls.Add(this.ProxyPortLabel, 0, 0);
  369. this.tableLayoutPanel5.Location = new System.Drawing.Point(241, 174);
  370. this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
  371. this.tableLayoutPanel5.Name = "tableLayoutPanel5";
  372. this.tableLayoutPanel5.Padding = new System.Windows.Forms.Padding(3);
  373. this.tableLayoutPanel5.RowCount = 1;
  374. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
  375. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
  376. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
  377. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
  378. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 26F));
  379. this.tableLayoutPanel5.Size = new System.Drawing.Size(186, 32);
  380. this.tableLayoutPanel5.TabIndex = 9;
  381. //
  382. // ProxyPortTextBox
  383. //
  384. this.ProxyPortTextBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
  385. this.ProxyPortTextBox.Location = new System.Drawing.Point(67, 6);
  386. this.ProxyPortTextBox.MaxLength = 10;
  387. this.ProxyPortTextBox.Name = "ProxyPortTextBox";
  388. this.ProxyPortTextBox.Size = new System.Drawing.Size(113, 20);
  389. this.ProxyPortTextBox.TabIndex = 4;
  390. this.ProxyPortTextBox.WordWrap = false;
  391. //
  392. // ProxyPortLabel
  393. //
  394. this.ProxyPortLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  395. this.ProxyPortLabel.AutoSize = true;
  396. this.ProxyPortLabel.Location = new System.Drawing.Point(6, 9);
  397. this.ProxyPortLabel.Name = "ProxyPortLabel";
  398. this.ProxyPortLabel.Size = new System.Drawing.Size(55, 13);
  399. this.ProxyPortLabel.TabIndex = 3;
  400. this.ProxyPortLabel.Text = "Proxy Port";
  401. //
  402. // tableLayoutPanel3
  403. //
  404. this.tableLayoutPanel3.AutoSize = true;
  405. this.tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  406. this.tableLayoutPanel3.ColumnCount = 2;
  407. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  408. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  409. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  410. this.tableLayoutPanel3.Controls.Add(this.MyCancelButton, 1, 0);
  411. this.tableLayoutPanel3.Controls.Add(this.OKButton, 0, 0);
  412. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Right;
  413. this.tableLayoutPanel3.Location = new System.Drawing.Point(268, 209);
  414. this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
  415. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  416. this.tableLayoutPanel3.RowCount = 1;
  417. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
  418. this.tableLayoutPanel3.Size = new System.Drawing.Size(159, 26);
  419. this.tableLayoutPanel3.TabIndex = 8;
  420. //
  421. // tableLayoutPanel4
  422. //
  423. this.tableLayoutPanel4.AutoSize = true;
  424. this.tableLayoutPanel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  425. this.tableLayoutPanel4.ColumnCount = 2;
  426. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  427. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  428. this.tableLayoutPanel4.Controls.Add(this.DeleteButton, 1, 0);
  429. this.tableLayoutPanel4.Controls.Add(this.AddButton, 0, 0);
  430. this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
  431. this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 174);
  432. this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
  433. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  434. this.tableLayoutPanel4.RowCount = 1;
  435. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  436. this.tableLayoutPanel4.Size = new System.Drawing.Size(166, 32);
  437. this.tableLayoutPanel4.TabIndex = 8;
  438. //
  439. // ConfigForm
  440. //
  441. this.AcceptButton = this.OKButton;
  442. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  443. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  444. this.AutoSize = true;
  445. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  446. this.CancelButton = this.MyCancelButton;
  447. this.ClientSize = new System.Drawing.Size(574, 367);
  448. this.Controls.Add(this.tableLayoutPanel2);
  449. this.Controls.Add(this.panel2);
  450. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  451. this.MaximizeBox = false;
  452. this.MinimizeBox = false;
  453. this.Name = "ConfigForm";
  454. this.Padding = new System.Windows.Forms.Padding(12, 12, 12, 9);
  455. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  456. this.Text = "Edit Servers";
  457. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ConfigForm_FormClosed);
  458. this.Load += new System.EventHandler(this.ConfigForm_Load);
  459. this.Shown += new System.EventHandler(this.ConfigForm_Shown);
  460. this.tableLayoutPanel1.ResumeLayout(false);
  461. this.tableLayoutPanel1.PerformLayout();
  462. this.ServerGroupBox.ResumeLayout(false);
  463. this.ServerGroupBox.PerformLayout();
  464. this.tableLayoutPanel2.ResumeLayout(false);
  465. this.tableLayoutPanel2.PerformLayout();
  466. this.tableLayoutPanel6.ResumeLayout(false);
  467. this.tableLayoutPanel5.ResumeLayout(false);
  468. this.tableLayoutPanel5.PerformLayout();
  469. this.tableLayoutPanel3.ResumeLayout(false);
  470. this.tableLayoutPanel4.ResumeLayout(false);
  471. this.ResumeLayout(false);
  472. this.PerformLayout();
  473. }
  474. #endregion
  475. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  476. private System.Windows.Forms.Label IPLabel;
  477. private System.Windows.Forms.Label ServerPortLabel;
  478. private System.Windows.Forms.Label PasswordLabel;
  479. private System.Windows.Forms.TextBox IPTextBox;
  480. private System.Windows.Forms.TextBox ServerPortTextBox;
  481. private System.Windows.Forms.TextBox PasswordTextBox;
  482. private System.Windows.Forms.Label EncryptionLabel;
  483. private System.Windows.Forms.ComboBox EncryptionSelect;
  484. private System.Windows.Forms.Panel panel2;
  485. private System.Windows.Forms.Button OKButton;
  486. private System.Windows.Forms.Button MyCancelButton;
  487. private System.Windows.Forms.Button DeleteButton;
  488. private System.Windows.Forms.Button AddButton;
  489. private System.Windows.Forms.GroupBox ServerGroupBox;
  490. private System.Windows.Forms.ListBox ServersListBox;
  491. private System.Windows.Forms.TextBox RemarksTextBox;
  492. private System.Windows.Forms.Label RemarksLabel;
  493. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  494. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  495. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  496. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
  497. private System.Windows.Forms.TextBox ProxyPortTextBox;
  498. private System.Windows.Forms.Label ProxyPortLabel;
  499. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
  500. private System.Windows.Forms.Button MoveDownButton;
  501. private System.Windows.Forms.Button MoveUpButton;
  502. }
  503. }