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 33 kB

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