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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  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.components = new System.ComponentModel.Container();
  29. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  30. this.PluginOptionsLabel = new System.Windows.Forms.Label();
  31. this.PluginTextBox = new System.Windows.Forms.TextBox();
  32. this.RemarksTextBox = new System.Windows.Forms.TextBox();
  33. this.IPLabel = new System.Windows.Forms.Label();
  34. this.ServerPortLabel = new System.Windows.Forms.Label();
  35. this.PasswordLabel = new System.Windows.Forms.Label();
  36. this.IPTextBox = new System.Windows.Forms.TextBox();
  37. this.ServerPortTextBox = new System.Windows.Forms.TextBox();
  38. this.PasswordTextBox = new System.Windows.Forms.TextBox();
  39. this.EncryptionLabel = new System.Windows.Forms.Label();
  40. this.EncryptionSelect = new System.Windows.Forms.ComboBox();
  41. this.TimeoutLabel = new System.Windows.Forms.Label();
  42. this.TimeoutTextBox = new System.Windows.Forms.TextBox();
  43. this.PluginLabel = new System.Windows.Forms.Label();
  44. this.PluginOptionsTextBox = new System.Windows.Forms.TextBox();
  45. this.ShowPasswdCheckBox = new System.Windows.Forms.CheckBox();
  46. this.PluginArgumentsTextBox = new System.Windows.Forms.TextBox();
  47. this.PluginArgumentsLabel = new System.Windows.Forms.Label();
  48. this.RemarksLabel = new System.Windows.Forms.Label();
  49. this.NeedPluginArgCheckBox = new System.Windows.Forms.CheckBox();
  50. this.panel2 = new System.Windows.Forms.Panel();
  51. this.OKButton = new System.Windows.Forms.Button();
  52. this.MyCancelButton = new System.Windows.Forms.Button();
  53. this.ApplyButton = new System.Windows.Forms.Button();
  54. this.DeleteButton = new System.Windows.Forms.Button();
  55. this.AddButton = new System.Windows.Forms.Button();
  56. this.ServerGroupBox = new System.Windows.Forms.GroupBox();
  57. this.ServersListBox = new System.Windows.Forms.ListBox();
  58. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  59. this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
  60. this.MoveDownButton = new System.Windows.Forms.Button();
  61. this.MoveUpButton = new System.Windows.Forms.Button();
  62. this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
  63. this.ProxyPortTextBox = new System.Windows.Forms.TextBox();
  64. this.ProxyPortLabel = new System.Windows.Forms.Label();
  65. this.PortableModeCheckBox = new System.Windows.Forms.CheckBox();
  66. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  67. this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  68. this.DuplicateButton = new System.Windows.Forms.Button();
  69. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  70. this.tableLayoutPanel1.SuspendLayout();
  71. this.ServerGroupBox.SuspendLayout();
  72. this.tableLayoutPanel2.SuspendLayout();
  73. this.tableLayoutPanel6.SuspendLayout();
  74. this.tableLayoutPanel5.SuspendLayout();
  75. this.tableLayoutPanel3.SuspendLayout();
  76. this.tableLayoutPanel4.SuspendLayout();
  77. this.SuspendLayout();
  78. //
  79. // tableLayoutPanel1
  80. //
  81. this.tableLayoutPanel1.AutoSize = true;
  82. this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  83. this.tableLayoutPanel1.ColumnCount = 2;
  84. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  85. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  86. this.tableLayoutPanel1.Controls.Add(this.PluginOptionsLabel, 0, 6);
  87. this.tableLayoutPanel1.Controls.Add(this.PluginTextBox, 1, 5);
  88. this.tableLayoutPanel1.Controls.Add(this.RemarksTextBox, 1, 10);
  89. this.tableLayoutPanel1.Controls.Add(this.IPLabel, 0, 0);
  90. this.tableLayoutPanel1.Controls.Add(this.ServerPortLabel, 0, 1);
  91. this.tableLayoutPanel1.Controls.Add(this.PasswordLabel, 0, 2);
  92. this.tableLayoutPanel1.Controls.Add(this.IPTextBox, 1, 0);
  93. this.tableLayoutPanel1.Controls.Add(this.ServerPortTextBox, 1, 1);
  94. this.tableLayoutPanel1.Controls.Add(this.PasswordTextBox, 1, 2);
  95. this.tableLayoutPanel1.Controls.Add(this.EncryptionLabel, 0, 4);
  96. this.tableLayoutPanel1.Controls.Add(this.EncryptionSelect, 1, 4);
  97. this.tableLayoutPanel1.Controls.Add(this.TimeoutLabel, 0, 11);
  98. this.tableLayoutPanel1.Controls.Add(this.TimeoutTextBox, 1, 11);
  99. this.tableLayoutPanel1.Controls.Add(this.PluginLabel, 0, 5);
  100. this.tableLayoutPanel1.Controls.Add(this.PluginOptionsTextBox, 1, 6);
  101. this.tableLayoutPanel1.Controls.Add(this.ShowPasswdCheckBox, 1, 3);
  102. this.tableLayoutPanel1.Controls.Add(this.PluginArgumentsTextBox, 1, 8);
  103. this.tableLayoutPanel1.Controls.Add(this.PluginArgumentsLabel, 0, 8);
  104. this.tableLayoutPanel1.Controls.Add(this.RemarksLabel, 0, 10);
  105. this.tableLayoutPanel1.Controls.Add(this.NeedPluginArgCheckBox, 1, 7);
  106. this.tableLayoutPanel1.Location = new System.Drawing.Point(10, 26);
  107. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  108. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  109. this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(4);
  110. this.tableLayoutPanel1.RowCount = 12;
  111. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  112. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  113. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  114. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  115. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  116. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  117. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  118. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  119. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  120. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  121. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  122. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  123. this.tableLayoutPanel1.Size = new System.Drawing.Size(394, 357);
  124. this.tableLayoutPanel1.TabIndex = 0;
  125. //
  126. // PluginOptionsLabel
  127. //
  128. this.PluginOptionsLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  129. this.PluginOptionsLabel.AutoSize = true;
  130. this.PluginOptionsLabel.Location = new System.Drawing.Point(24, 203);
  131. this.PluginOptionsLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  132. this.PluginOptionsLabel.Name = "PluginOptionsLabel";
  133. this.PluginOptionsLabel.Size = new System.Drawing.Size(119, 15);
  134. this.PluginOptionsLabel.TabIndex = 6;
  135. this.PluginOptionsLabel.Text = "Plugin Options";
  136. this.toolTip1.SetToolTip(this.PluginOptionsLabel, "Environment variables for plugin program");
  137. //
  138. // PluginTextBox
  139. //
  140. this.PluginTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  141. this.PluginTextBox.Location = new System.Drawing.Point(151, 165);
  142. this.PluginTextBox.Margin = new System.Windows.Forms.Padding(4);
  143. this.PluginTextBox.MaxLength = 256;
  144. this.PluginTextBox.Name = "PluginTextBox";
  145. this.PluginTextBox.Size = new System.Drawing.Size(235, 25);
  146. this.PluginTextBox.TabIndex = 5;
  147. this.PluginTextBox.WordWrap = false;
  148. //
  149. // RemarksTextBox
  150. //
  151. this.RemarksTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  152. this.RemarksTextBox.Location = new System.Drawing.Point(151, 291);
  153. this.RemarksTextBox.Margin = new System.Windows.Forms.Padding(4);
  154. this.RemarksTextBox.MaxLength = 32;
  155. this.RemarksTextBox.Name = "RemarksTextBox";
  156. this.RemarksTextBox.Size = new System.Drawing.Size(235, 25);
  157. this.RemarksTextBox.TabIndex = 8;
  158. this.RemarksTextBox.WordWrap = false;
  159. //
  160. // IPLabel
  161. //
  162. this.IPLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  163. this.IPLabel.AutoSize = true;
  164. this.IPLabel.Location = new System.Drawing.Point(64, 13);
  165. this.IPLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  166. this.IPLabel.Name = "IPLabel";
  167. this.IPLabel.Size = new System.Drawing.Size(79, 15);
  168. this.IPLabel.TabIndex = 0;
  169. this.IPLabel.Text = "Server IP";
  170. //
  171. // ServerPortLabel
  172. //
  173. this.ServerPortLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  174. this.ServerPortLabel.AutoSize = true;
  175. this.ServerPortLabel.Location = new System.Drawing.Point(48, 46);
  176. this.ServerPortLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  177. this.ServerPortLabel.Name = "ServerPortLabel";
  178. this.ServerPortLabel.Size = new System.Drawing.Size(95, 15);
  179. this.ServerPortLabel.TabIndex = 1;
  180. this.ServerPortLabel.Text = "Server Port";
  181. //
  182. // PasswordLabel
  183. //
  184. this.PasswordLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  185. this.PasswordLabel.AutoSize = true;
  186. this.PasswordLabel.Location = new System.Drawing.Point(72, 79);
  187. this.PasswordLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  188. this.PasswordLabel.Name = "PasswordLabel";
  189. this.PasswordLabel.Size = new System.Drawing.Size(71, 15);
  190. this.PasswordLabel.TabIndex = 2;
  191. this.PasswordLabel.Text = "Password";
  192. this.PasswordLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  193. //
  194. // IPTextBox
  195. //
  196. this.IPTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  197. this.IPTextBox.Location = new System.Drawing.Point(151, 8);
  198. this.IPTextBox.Margin = new System.Windows.Forms.Padding(4);
  199. this.IPTextBox.MaxLength = 512;
  200. this.IPTextBox.Name = "IPTextBox";
  201. this.IPTextBox.Size = new System.Drawing.Size(235, 25);
  202. this.IPTextBox.TabIndex = 0;
  203. this.IPTextBox.WordWrap = false;
  204. //
  205. // ServerPortTextBox
  206. //
  207. this.ServerPortTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  208. this.ServerPortTextBox.Location = new System.Drawing.Point(151, 41);
  209. this.ServerPortTextBox.Margin = new System.Windows.Forms.Padding(4);
  210. this.ServerPortTextBox.MaxLength = 10;
  211. this.ServerPortTextBox.Name = "ServerPortTextBox";
  212. this.ServerPortTextBox.Size = new System.Drawing.Size(235, 25);
  213. this.ServerPortTextBox.TabIndex = 1;
  214. this.ServerPortTextBox.WordWrap = false;
  215. //
  216. // PasswordTextBox
  217. //
  218. this.PasswordTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  219. this.PasswordTextBox.Font = new System.Drawing.Font("Consolas", 9F);
  220. this.PasswordTextBox.Location = new System.Drawing.Point(151, 74);
  221. this.PasswordTextBox.Margin = new System.Windows.Forms.Padding(4);
  222. this.PasswordTextBox.MaxLength = 256;
  223. this.PasswordTextBox.Name = "PasswordTextBox";
  224. this.PasswordTextBox.Size = new System.Drawing.Size(235, 25);
  225. this.PasswordTextBox.TabIndex = 2;
  226. this.PasswordTextBox.UseSystemPasswordChar = true;
  227. this.PasswordTextBox.WordWrap = false;
  228. //
  229. // EncryptionLabel
  230. //
  231. this.EncryptionLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  232. this.EncryptionLabel.AutoSize = true;
  233. this.EncryptionLabel.Location = new System.Drawing.Point(56, 138);
  234. this.EncryptionLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  235. this.EncryptionLabel.Name = "EncryptionLabel";
  236. this.EncryptionLabel.Size = new System.Drawing.Size(87, 15);
  237. this.EncryptionLabel.TabIndex = 4;
  238. this.EncryptionLabel.Text = "Encryption";
  239. //
  240. // EncryptionSelect
  241. //
  242. this.EncryptionSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  243. | System.Windows.Forms.AnchorStyles.Right)));
  244. this.EncryptionSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  245. this.EncryptionSelect.FormattingEnabled = true;
  246. this.EncryptionSelect.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  247. this.EncryptionSelect.ItemHeight = 15;
  248. this.EncryptionSelect.Location = new System.Drawing.Point(151, 134);
  249. this.EncryptionSelect.Margin = new System.Windows.Forms.Padding(4);
  250. this.EncryptionSelect.Name = "EncryptionSelect";
  251. this.EncryptionSelect.Size = new System.Drawing.Size(235, 23);
  252. this.EncryptionSelect.TabIndex = 4;
  253. //
  254. // TimeoutLabel
  255. //
  256. this.TimeoutLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  257. this.TimeoutLabel.AutoSize = true;
  258. this.TimeoutLabel.Location = new System.Drawing.Point(40, 329);
  259. this.TimeoutLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  260. this.TimeoutLabel.Name = "TimeoutLabel";
  261. this.TimeoutLabel.RightToLeft = System.Windows.Forms.RightToLeft.No;
  262. this.TimeoutLabel.Size = new System.Drawing.Size(103, 15);
  263. this.TimeoutLabel.TabIndex = 9;
  264. this.TimeoutLabel.Text = "Timeout(Sec)";
  265. //
  266. // TimeoutTextBox
  267. //
  268. this.TimeoutTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  269. this.TimeoutTextBox.Location = new System.Drawing.Point(151, 324);
  270. this.TimeoutTextBox.Margin = new System.Windows.Forms.Padding(4);
  271. this.TimeoutTextBox.MaxLength = 5;
  272. this.TimeoutTextBox.Name = "TimeoutTextBox";
  273. this.TimeoutTextBox.Size = new System.Drawing.Size(235, 25);
  274. this.TimeoutTextBox.TabIndex = 9;
  275. //
  276. // PluginLabel
  277. //
  278. this.PluginLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  279. this.PluginLabel.AutoSize = true;
  280. this.PluginLabel.Location = new System.Drawing.Point(24, 170);
  281. this.PluginLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  282. this.PluginLabel.Name = "PluginLabel";
  283. this.PluginLabel.Size = new System.Drawing.Size(119, 15);
  284. this.PluginLabel.TabIndex = 5;
  285. this.PluginLabel.Text = "Plugin Program";
  286. //
  287. // PluginOptionsTextBox
  288. //
  289. this.PluginOptionsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  290. this.PluginOptionsTextBox.Location = new System.Drawing.Point(151, 198);
  291. this.PluginOptionsTextBox.Margin = new System.Windows.Forms.Padding(4);
  292. this.PluginOptionsTextBox.MaxLength = 256;
  293. this.PluginOptionsTextBox.Name = "PluginOptionsTextBox";
  294. this.PluginOptionsTextBox.Size = new System.Drawing.Size(235, 25);
  295. this.PluginOptionsTextBox.TabIndex = 6;
  296. this.PluginOptionsTextBox.WordWrap = false;
  297. //
  298. // ShowPasswdCheckBox
  299. //
  300. this.ShowPasswdCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  301. | System.Windows.Forms.AnchorStyles.Left)));
  302. this.ShowPasswdCheckBox.AutoSize = true;
  303. this.ShowPasswdCheckBox.Location = new System.Drawing.Point(151, 107);
  304. this.ShowPasswdCheckBox.Margin = new System.Windows.Forms.Padding(4);
  305. this.ShowPasswdCheckBox.Name = "ShowPasswdCheckBox";
  306. this.ShowPasswdCheckBox.Size = new System.Drawing.Size(133, 19);
  307. this.ShowPasswdCheckBox.TabIndex = 3;
  308. this.ShowPasswdCheckBox.Text = "Show Password";
  309. this.ShowPasswdCheckBox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  310. this.ShowPasswdCheckBox.UseVisualStyleBackColor = true;
  311. this.ShowPasswdCheckBox.CheckedChanged += new System.EventHandler(this.ShowPasswdCheckBox_CheckedChanged);
  312. //
  313. // PluginArgumentsTextBox
  314. //
  315. this.PluginArgumentsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  316. this.PluginArgumentsTextBox.Location = new System.Drawing.Point(151, 258);
  317. this.PluginArgumentsTextBox.Margin = new System.Windows.Forms.Padding(4);
  318. this.PluginArgumentsTextBox.MaxLength = 512;
  319. this.PluginArgumentsTextBox.Name = "PluginArgumentsTextBox";
  320. this.PluginArgumentsTextBox.Size = new System.Drawing.Size(235, 25);
  321. this.PluginArgumentsTextBox.TabIndex = 7;
  322. this.PluginArgumentsTextBox.WordWrap = false;
  323. //
  324. // PluginArgumentsLabel
  325. //
  326. this.PluginArgumentsLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  327. this.PluginArgumentsLabel.AutoSize = true;
  328. this.PluginArgumentsLabel.Location = new System.Drawing.Point(8, 263);
  329. this.PluginArgumentsLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  330. this.PluginArgumentsLabel.Name = "PluginArgumentsLabel";
  331. this.PluginArgumentsLabel.Size = new System.Drawing.Size(135, 15);
  332. this.PluginArgumentsLabel.TabIndex = 7;
  333. this.PluginArgumentsLabel.Text = "Plugin Arguments";
  334. this.toolTip1.SetToolTip(this.PluginArgumentsLabel, "Not a SIP003 standard. Used as CLI arguments.\r\nMandatory:\r\n%SS_LOCAL_HOST%, %SS_L" +
  335. "OCAL_PORT%, %SS_REMOTE_HOST%, %SS_REMOTE_PORT%\r\nOptional:\r\n%SS_PLUGIN_OPTIONS%");
  336. //
  337. // RemarksLabel
  338. //
  339. this.RemarksLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  340. this.RemarksLabel.AutoSize = true;
  341. this.RemarksLabel.Location = new System.Drawing.Point(80, 296);
  342. this.RemarksLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  343. this.RemarksLabel.Name = "RemarksLabel";
  344. this.RemarksLabel.Size = new System.Drawing.Size(63, 15);
  345. this.RemarksLabel.TabIndex = 8;
  346. this.RemarksLabel.Text = "Remarks";
  347. //
  348. // NeedPluginArgCheckBox
  349. //
  350. this.NeedPluginArgCheckBox.AutoSize = true;
  351. this.NeedPluginArgCheckBox.Location = new System.Drawing.Point(151, 231);
  352. this.NeedPluginArgCheckBox.Margin = new System.Windows.Forms.Padding(4);
  353. this.NeedPluginArgCheckBox.Name = "NeedPluginArgCheckBox";
  354. this.NeedPluginArgCheckBox.Size = new System.Drawing.Size(189, 19);
  355. this.NeedPluginArgCheckBox.TabIndex = 10;
  356. this.NeedPluginArgCheckBox.Text = "Need Plugin Argument";
  357. this.NeedPluginArgCheckBox.UseVisualStyleBackColor = true;
  358. this.NeedPluginArgCheckBox.CheckedChanged += new System.EventHandler(this.UsePluginArgCheckBox_CheckedChanged);
  359. //
  360. // panel2
  361. //
  362. this.panel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
  363. this.panel2.AutoSize = true;
  364. this.panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  365. this.panel2.Location = new System.Drawing.Point(206, 234);
  366. this.panel2.Margin = new System.Windows.Forms.Padding(4);
  367. this.panel2.Name = "panel2";
  368. this.panel2.Size = new System.Drawing.Size(0, 0);
  369. this.panel2.TabIndex = 1;
  370. //
  371. // OKButton
  372. //
  373. this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
  374. this.OKButton.Dock = System.Windows.Forms.DockStyle.Right;
  375. this.OKButton.Location = new System.Drawing.Point(4, 4);
  376. this.OKButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 0);
  377. this.OKButton.Name = "OKButton";
  378. this.OKButton.Size = new System.Drawing.Size(94, 29);
  379. this.OKButton.TabIndex = 17;
  380. this.OKButton.Text = "OK";
  381. this.OKButton.UseVisualStyleBackColor = true;
  382. this.OKButton.Click += new System.EventHandler(this.OKButton_Click);
  383. //
  384. // MyCancelButton
  385. //
  386. this.MyCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  387. this.MyCancelButton.Dock = System.Windows.Forms.DockStyle.Right;
  388. this.MyCancelButton.Location = new System.Drawing.Point(106, 4);
  389. this.MyCancelButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 0);
  390. this.MyCancelButton.Name = "MyCancelButton";
  391. this.MyCancelButton.Size = new System.Drawing.Size(94, 29);
  392. this.MyCancelButton.TabIndex = 18;
  393. this.MyCancelButton.Text = "Cancel";
  394. this.MyCancelButton.UseVisualStyleBackColor = true;
  395. this.MyCancelButton.Click += new System.EventHandler(this.CancelButton_Click);
  396. //
  397. // ApplyButton
  398. //
  399. this.ApplyButton.Dock = System.Windows.Forms.DockStyle.Right;
  400. this.ApplyButton.Enabled = false;
  401. this.ApplyButton.Location = new System.Drawing.Point(208, 4);
  402. this.ApplyButton.Margin = new System.Windows.Forms.Padding(4, 4, 0, 0);
  403. this.ApplyButton.Name = "ApplyButton";
  404. this.ApplyButton.Size = new System.Drawing.Size(94, 29);
  405. this.ApplyButton.TabIndex = 19;
  406. this.ApplyButton.Text = "Apply";
  407. this.ApplyButton.UseVisualStyleBackColor = true;
  408. this.ApplyButton.Click += new System.EventHandler(this.ApplyButton_Click);
  409. //
  410. // DeleteButton
  411. //
  412. this.DeleteButton.Dock = System.Windows.Forms.DockStyle.Right;
  413. this.DeleteButton.Location = new System.Drawing.Point(108, 8);
  414. this.DeleteButton.Margin = new System.Windows.Forms.Padding(4, 8, 0, 4);
  415. this.DeleteButton.Name = "DeleteButton";
  416. this.DeleteButton.Size = new System.Drawing.Size(100, 29);
  417. this.DeleteButton.TabIndex = 13;
  418. this.DeleteButton.Text = "&Delete";
  419. this.DeleteButton.UseVisualStyleBackColor = true;
  420. this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
  421. //
  422. // AddButton
  423. //
  424. this.AddButton.Dock = System.Windows.Forms.DockStyle.Left;
  425. this.AddButton.Location = new System.Drawing.Point(0, 8);
  426. this.AddButton.Margin = new System.Windows.Forms.Padding(0, 8, 4, 4);
  427. this.AddButton.Name = "AddButton";
  428. this.AddButton.Size = new System.Drawing.Size(100, 29);
  429. this.AddButton.TabIndex = 12;
  430. this.AddButton.Text = "&Add";
  431. this.AddButton.UseVisualStyleBackColor = true;
  432. this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
  433. //
  434. // ServerGroupBox
  435. //
  436. this.ServerGroupBox.AutoSize = true;
  437. this.ServerGroupBox.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  438. this.ServerGroupBox.Controls.Add(this.tableLayoutPanel1);
  439. this.ServerGroupBox.Location = new System.Drawing.Point(223, 0);
  440. this.ServerGroupBox.Margin = new System.Windows.Forms.Padding(15, 0, 0, 0);
  441. this.ServerGroupBox.Name = "ServerGroupBox";
  442. this.ServerGroupBox.Padding = new System.Windows.Forms.Padding(4);
  443. this.ServerGroupBox.Size = new System.Drawing.Size(408, 405);
  444. this.ServerGroupBox.TabIndex = 0;
  445. this.ServerGroupBox.TabStop = false;
  446. this.ServerGroupBox.Text = "Server";
  447. //
  448. // ServersListBox
  449. //
  450. this.ServersListBox.FormattingEnabled = true;
  451. this.ServersListBox.IntegralHeight = false;
  452. this.ServersListBox.ItemHeight = 15;
  453. this.ServersListBox.Location = new System.Drawing.Point(0, 0);
  454. this.ServersListBox.Margin = new System.Windows.Forms.Padding(0);
  455. this.ServersListBox.Name = "ServersListBox";
  456. this.ServersListBox.Size = new System.Drawing.Size(206, 184);
  457. this.ServersListBox.TabIndex = 11;
  458. this.ServersListBox.SelectedIndexChanged += new System.EventHandler(this.ServersListBox_SelectedIndexChanged);
  459. //
  460. // tableLayoutPanel2
  461. //
  462. this.tableLayoutPanel2.AutoSize = true;
  463. this.tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  464. this.tableLayoutPanel2.ColumnCount = 2;
  465. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  466. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  467. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel6, 0, 2);
  468. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel5, 1, 1);
  469. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 1, 2);
  470. this.tableLayoutPanel2.Controls.Add(this.ServersListBox, 0, 0);
  471. this.tableLayoutPanel2.Controls.Add(this.ServerGroupBox, 1, 0);
  472. this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 1);
  473. this.tableLayoutPanel2.Location = new System.Drawing.Point(15, 15);
  474. this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
  475. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  476. this.tableLayoutPanel2.RowCount = 3;
  477. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  478. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  479. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
  480. this.tableLayoutPanel2.Size = new System.Drawing.Size(631, 528);
  481. this.tableLayoutPanel2.TabIndex = 7;
  482. //
  483. // tableLayoutPanel6
  484. //
  485. this.tableLayoutPanel6.AutoSize = true;
  486. this.tableLayoutPanel6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  487. this.tableLayoutPanel6.ColumnCount = 2;
  488. this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  489. this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  490. this.tableLayoutPanel6.Controls.Add(this.MoveDownButton, 1, 0);
  491. this.tableLayoutPanel6.Controls.Add(this.MoveUpButton, 0, 0);
  492. this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Top;
  493. this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 487);
  494. this.tableLayoutPanel6.Margin = new System.Windows.Forms.Padding(0);
  495. this.tableLayoutPanel6.Name = "tableLayoutPanel6";
  496. this.tableLayoutPanel6.RowCount = 1;
  497. this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle());
  498. this.tableLayoutPanel6.Size = new System.Drawing.Size(208, 41);
  499. this.tableLayoutPanel6.TabIndex = 10;
  500. //
  501. // MoveDownButton
  502. //
  503. this.MoveDownButton.Dock = System.Windows.Forms.DockStyle.Right;
  504. this.MoveDownButton.Location = new System.Drawing.Point(108, 8);
  505. this.MoveDownButton.Margin = new System.Windows.Forms.Padding(4, 8, 0, 4);
  506. this.MoveDownButton.Name = "MoveDownButton";
  507. this.MoveDownButton.Size = new System.Drawing.Size(100, 29);
  508. this.MoveDownButton.TabIndex = 16;
  509. this.MoveDownButton.Text = "Move D&own";
  510. this.MoveDownButton.UseVisualStyleBackColor = true;
  511. this.MoveDownButton.Click += new System.EventHandler(this.MoveDownButton_Click);
  512. //
  513. // MoveUpButton
  514. //
  515. this.MoveUpButton.Dock = System.Windows.Forms.DockStyle.Left;
  516. this.MoveUpButton.Location = new System.Drawing.Point(0, 8);
  517. this.MoveUpButton.Margin = new System.Windows.Forms.Padding(0, 8, 4, 4);
  518. this.MoveUpButton.Name = "MoveUpButton";
  519. this.MoveUpButton.Size = new System.Drawing.Size(100, 29);
  520. this.MoveUpButton.TabIndex = 15;
  521. this.MoveUpButton.Text = "Move &Up";
  522. this.MoveUpButton.UseVisualStyleBackColor = true;
  523. this.MoveUpButton.Click += new System.EventHandler(this.MoveUpButton_Click);
  524. //
  525. // tableLayoutPanel5
  526. //
  527. this.tableLayoutPanel5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  528. | System.Windows.Forms.AnchorStyles.Left)));
  529. this.tableLayoutPanel5.AutoSize = true;
  530. this.tableLayoutPanel5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  531. this.tableLayoutPanel5.ColumnCount = 2;
  532. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  533. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  534. this.tableLayoutPanel5.Controls.Add(this.ProxyPortTextBox, 1, 0);
  535. this.tableLayoutPanel5.Controls.Add(this.ProxyPortLabel, 0, 0);
  536. this.tableLayoutPanel5.Controls.Add(this.PortableModeCheckBox, 0, 1);
  537. this.tableLayoutPanel5.Location = new System.Drawing.Point(208, 405);
  538. this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
  539. this.tableLayoutPanel5.Name = "tableLayoutPanel5";
  540. this.tableLayoutPanel5.Padding = new System.Windows.Forms.Padding(4);
  541. this.tableLayoutPanel5.RowCount = 2;
  542. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
  543. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle());
  544. this.tableLayoutPanel5.Size = new System.Drawing.Size(251, 82);
  545. this.tableLayoutPanel5.TabIndex = 9;
  546. //
  547. // ProxyPortTextBox
  548. //
  549. this.ProxyPortTextBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
  550. this.ProxyPortTextBox.Location = new System.Drawing.Point(103, 8);
  551. this.ProxyPortTextBox.Margin = new System.Windows.Forms.Padding(4);
  552. this.ProxyPortTextBox.MaxLength = 10;
  553. this.ProxyPortTextBox.Name = "ProxyPortTextBox";
  554. this.ProxyPortTextBox.Size = new System.Drawing.Size(140, 25);
  555. this.ProxyPortTextBox.TabIndex = 10;
  556. this.ProxyPortTextBox.WordWrap = false;
  557. //
  558. // ProxyPortLabel
  559. //
  560. this.ProxyPortLabel.Anchor = System.Windows.Forms.AnchorStyles.Right;
  561. this.ProxyPortLabel.AutoSize = true;
  562. this.ProxyPortLabel.Location = new System.Drawing.Point(8, 13);
  563. this.ProxyPortLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  564. this.ProxyPortLabel.Name = "ProxyPortLabel";
  565. this.ProxyPortLabel.Size = new System.Drawing.Size(87, 15);
  566. this.ProxyPortLabel.TabIndex = 10;
  567. this.ProxyPortLabel.Text = "Proxy Port";
  568. //
  569. // PortableModeCheckBox
  570. //
  571. this.PortableModeCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
  572. this.PortableModeCheckBox.AutoSize = true;
  573. this.tableLayoutPanel5.SetColumnSpan(this.PortableModeCheckBox, 2);
  574. this.PortableModeCheckBox.Location = new System.Drawing.Point(8, 48);
  575. this.PortableModeCheckBox.Margin = new System.Windows.Forms.Padding(4);
  576. this.PortableModeCheckBox.Name = "PortableModeCheckBox";
  577. this.PortableModeCheckBox.Size = new System.Drawing.Size(133, 19);
  578. this.PortableModeCheckBox.TabIndex = 11;
  579. this.PortableModeCheckBox.Text = "Portable Mode";
  580. this.toolTip1.SetToolTip(this.PortableModeCheckBox, "restart required");
  581. this.PortableModeCheckBox.UseVisualStyleBackColor = true;
  582. //
  583. // tableLayoutPanel3
  584. //
  585. this.tableLayoutPanel3.AutoSize = true;
  586. this.tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  587. this.tableLayoutPanel3.ColumnCount = 3;
  588. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  589. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  590. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  591. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  592. this.tableLayoutPanel3.Controls.Add(this.MyCancelButton, 1, 0);
  593. this.tableLayoutPanel3.Controls.Add(this.OKButton, 0, 0);
  594. this.tableLayoutPanel3.Controls.Add(this.ApplyButton, 2, 0);
  595. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Right;
  596. this.tableLayoutPanel3.Location = new System.Drawing.Point(329, 491);
  597. this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(4, 4, 0, 4);
  598. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  599. this.tableLayoutPanel3.RowCount = 1;
  600. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
  601. this.tableLayoutPanel3.Size = new System.Drawing.Size(302, 33);
  602. this.tableLayoutPanel3.TabIndex = 8;
  603. //
  604. // tableLayoutPanel4
  605. //
  606. this.tableLayoutPanel4.AutoSize = true;
  607. this.tableLayoutPanel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  608. this.tableLayoutPanel4.ColumnCount = 2;
  609. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  610. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  611. this.tableLayoutPanel4.Controls.Add(this.DuplicateButton, 0, 1);
  612. this.tableLayoutPanel4.Controls.Add(this.DeleteButton, 1, 0);
  613. this.tableLayoutPanel4.Controls.Add(this.AddButton, 0, 0);
  614. this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
  615. this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 405);
  616. this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
  617. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  618. this.tableLayoutPanel4.RowCount = 2;
  619. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  620. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
  621. this.tableLayoutPanel4.Size = new System.Drawing.Size(208, 82);
  622. this.tableLayoutPanel4.TabIndex = 8;
  623. //
  624. // DuplicateButton
  625. //
  626. this.DuplicateButton.Dock = System.Windows.Forms.DockStyle.Left;
  627. this.DuplicateButton.Location = new System.Drawing.Point(0, 49);
  628. this.DuplicateButton.Margin = new System.Windows.Forms.Padding(0, 8, 4, 4);
  629. this.DuplicateButton.Name = "DuplicateButton";
  630. this.DuplicateButton.Size = new System.Drawing.Size(100, 29);
  631. this.DuplicateButton.TabIndex = 14;
  632. this.DuplicateButton.Text = "Dupli&cate";
  633. this.DuplicateButton.UseVisualStyleBackColor = true;
  634. this.DuplicateButton.Click += new System.EventHandler(this.DuplicateButton_Click);
  635. //
  636. // ConfigForm
  637. //
  638. this.AcceptButton = this.OKButton;
  639. this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
  640. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  641. this.AutoSize = true;
  642. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  643. this.CancelButton = this.MyCancelButton;
  644. this.ClientSize = new System.Drawing.Size(614, 548);
  645. this.Controls.Add(this.tableLayoutPanel2);
  646. this.Controls.Add(this.panel2);
  647. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  648. this.Margin = new System.Windows.Forms.Padding(4);
  649. this.MaximizeBox = false;
  650. this.MinimizeBox = false;
  651. this.Name = "ConfigForm";
  652. this.Padding = new System.Windows.Forms.Padding(15, 15, 15, 11);
  653. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  654. this.Text = "Edit Servers";
  655. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ConfigForm_FormClosed);
  656. this.Shown += new System.EventHandler(this.ConfigForm_Shown);
  657. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigForm_KeyDown);
  658. this.tableLayoutPanel1.ResumeLayout(false);
  659. this.tableLayoutPanel1.PerformLayout();
  660. this.ServerGroupBox.ResumeLayout(false);
  661. this.ServerGroupBox.PerformLayout();
  662. this.tableLayoutPanel2.ResumeLayout(false);
  663. this.tableLayoutPanel2.PerformLayout();
  664. this.tableLayoutPanel6.ResumeLayout(false);
  665. this.tableLayoutPanel5.ResumeLayout(false);
  666. this.tableLayoutPanel5.PerformLayout();
  667. this.tableLayoutPanel3.ResumeLayout(false);
  668. this.tableLayoutPanel4.ResumeLayout(false);
  669. this.ResumeLayout(false);
  670. this.PerformLayout();
  671. }
  672. #endregion
  673. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  674. private System.Windows.Forms.Label IPLabel;
  675. private System.Windows.Forms.Label ServerPortLabel;
  676. private System.Windows.Forms.Label PasswordLabel;
  677. private System.Windows.Forms.TextBox IPTextBox;
  678. private System.Windows.Forms.TextBox ServerPortTextBox;
  679. private System.Windows.Forms.Label EncryptionLabel;
  680. private System.Windows.Forms.ComboBox EncryptionSelect;
  681. private System.Windows.Forms.Panel panel2;
  682. private System.Windows.Forms.Button OKButton;
  683. private System.Windows.Forms.Button MyCancelButton;
  684. private System.Windows.Forms.Button ApplyButton;
  685. private System.Windows.Forms.Button DeleteButton;
  686. private System.Windows.Forms.Button AddButton;
  687. private System.Windows.Forms.GroupBox ServerGroupBox;
  688. private System.Windows.Forms.ListBox ServersListBox;
  689. private System.Windows.Forms.TextBox RemarksTextBox;
  690. private System.Windows.Forms.Label RemarksLabel;
  691. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  692. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  693. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  694. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
  695. private System.Windows.Forms.TextBox ProxyPortTextBox;
  696. private System.Windows.Forms.Label ProxyPortLabel;
  697. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
  698. private System.Windows.Forms.Button MoveDownButton;
  699. private System.Windows.Forms.Button MoveUpButton;
  700. private System.Windows.Forms.Button DuplicateButton;
  701. private System.Windows.Forms.Label TimeoutLabel;
  702. private System.Windows.Forms.TextBox TimeoutTextBox;
  703. private System.Windows.Forms.Label PluginOptionsLabel;
  704. private System.Windows.Forms.TextBox PluginTextBox;
  705. private System.Windows.Forms.Label PluginLabel;
  706. private System.Windows.Forms.TextBox PluginOptionsTextBox;
  707. private System.Windows.Forms.CheckBox ShowPasswdCheckBox;
  708. private System.Windows.Forms.TextBox PasswordTextBox;
  709. private System.Windows.Forms.TextBox PluginArgumentsTextBox;
  710. private System.Windows.Forms.Label PluginArgumentsLabel;
  711. private System.Windows.Forms.ToolTip toolTip1;
  712. private System.Windows.Forms.CheckBox PortableModeCheckBox;
  713. private System.Windows.Forms.CheckBox NeedPluginArgCheckBox;
  714. }
  715. }