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