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.

HotkeySettingsForm.designer.cs 20 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. namespace Shadowsocks.View
  2. {
  3. partial class HotkeySettingsForm
  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. System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  29. this.btnOK = new System.Windows.Forms.Button();
  30. this.btnCancel = new System.Windows.Forms.Button();
  31. this.btnRegisterAll = new System.Windows.Forms.Button();
  32. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  33. this.SwitchSystemProxyLabel = new System.Windows.Forms.Label();
  34. this.SwitchProxyModeLabel = new System.Windows.Forms.Label();
  35. this.SwitchAllowLanLabel = new System.Windows.Forms.Label();
  36. this.ShowLogsLabel = new System.Windows.Forms.Label();
  37. this.ServerMoveUpLabel = new System.Windows.Forms.Label();
  38. this.ServerMoveDownLabel = new System.Windows.Forms.Label();
  39. this.SwitchSystemProxyTextBox = new System.Windows.Forms.TextBox();
  40. this.SwitchProxyModeTextBox = new System.Windows.Forms.TextBox();
  41. this.SwitchAllowLanTextBox = new System.Windows.Forms.TextBox();
  42. this.ShowLogsTextBox = new System.Windows.Forms.TextBox();
  43. this.ServerMoveUpTextBox = new System.Windows.Forms.TextBox();
  44. this.ServerMoveDownTextBox = new System.Windows.Forms.TextBox();
  45. flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  46. flowLayoutPanel1.SuspendLayout();
  47. this.tableLayoutPanel1.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // flowLayoutPanel1
  51. //
  52. this.tableLayoutPanel1.SetColumnSpan(flowLayoutPanel1, 2);
  53. flowLayoutPanel1.Controls.Add(this.btnOK);
  54. flowLayoutPanel1.Controls.Add(this.btnCancel);
  55. flowLayoutPanel1.Controls.Add(this.btnRegisterAll);
  56. flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp;
  57. flowLayoutPanel1.Location = new System.Drawing.Point(0, 205);
  58. flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  59. flowLayoutPanel1.Name = "flowLayoutPanel1";
  60. flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 0, 16, 0);
  61. flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  62. flowLayoutPanel1.Size = new System.Drawing.Size(475, 43);
  63. flowLayoutPanel1.TabIndex = 6;
  64. //
  65. // btnOK
  66. //
  67. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  68. this.btnOK.Location = new System.Drawing.Point(333, 9);
  69. this.btnOK.Name = "btnOK";
  70. this.btnOK.Size = new System.Drawing.Size(123, 31);
  71. this.btnOK.TabIndex = 0;
  72. this.btnOK.Text = "OK";
  73. this.btnOK.UseVisualStyleBackColor = true;
  74. this.btnOK.Click += new System.EventHandler(this.OKButton_Click);
  75. //
  76. // btnCancel
  77. //
  78. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  79. this.btnCancel.Location = new System.Drawing.Point(204, 9);
  80. this.btnCancel.Name = "btnCancel";
  81. this.btnCancel.Size = new System.Drawing.Size(123, 31);
  82. this.btnCancel.TabIndex = 1;
  83. this.btnCancel.Text = "Cancel";
  84. this.btnCancel.UseVisualStyleBackColor = true;
  85. this.btnCancel.Click += new System.EventHandler(this.CancelButton_Click);
  86. //
  87. // btnRegisterAll
  88. //
  89. this.btnRegisterAll.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  90. this.btnRegisterAll.Location = new System.Drawing.Point(75, 9);
  91. this.btnRegisterAll.Name = "btnRegisterAll";
  92. this.btnRegisterAll.Size = new System.Drawing.Size(123, 31);
  93. this.btnRegisterAll.TabIndex = 2;
  94. this.btnRegisterAll.Text = "Reg All";
  95. this.btnRegisterAll.UseVisualStyleBackColor = true;
  96. this.btnRegisterAll.Click += new System.EventHandler(this.RegisterAllButton_Click);
  97. //
  98. // tableLayoutPanel1
  99. //
  100. this.tableLayoutPanel1.ColumnCount = 2;
  101. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  102. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  103. this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyLabel, 0, 0);
  104. this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeLabel, 0, 1);
  105. this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanLabel, 0, 2);
  106. this.tableLayoutPanel1.Controls.Add(this.ShowLogsLabel, 0, 3);
  107. this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpLabel, 0, 4);
  108. this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownLabel, 0, 5);
  109. this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 6);
  110. this.tableLayoutPanel1.Controls.Add(this.SwitchSystemProxyTextBox, 1, 0);
  111. this.tableLayoutPanel1.Controls.Add(this.SwitchProxyModeTextBox, 1, 1);
  112. this.tableLayoutPanel1.Controls.Add(this.SwitchAllowLanTextBox, 1, 2);
  113. this.tableLayoutPanel1.Controls.Add(this.ShowLogsTextBox, 1, 3);
  114. this.tableLayoutPanel1.Controls.Add(this.ServerMoveUpTextBox, 1, 4);
  115. this.tableLayoutPanel1.Controls.Add(this.ServerMoveDownTextBox, 1, 5);
  116. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  117. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  118. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  119. this.tableLayoutPanel1.RowCount = 7;
  120. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
  121. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
  122. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
  123. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.50485F));
  124. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17.21683F));
  125. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.76375F));
  126. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
  127. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  128. this.tableLayoutPanel1.Size = new System.Drawing.Size(491, 248);
  129. this.tableLayoutPanel1.TabIndex = 0;
  130. //
  131. // SwitchSystemProxyLabel
  132. //
  133. this.SwitchSystemProxyLabel.AutoSize = true;
  134. this.SwitchSystemProxyLabel.Dock = System.Windows.Forms.DockStyle.Right;
  135. this.SwitchSystemProxyLabel.Location = new System.Drawing.Point(50, 0);
  136. this.SwitchSystemProxyLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  137. this.SwitchSystemProxyLabel.Name = "SwitchSystemProxyLabel";
  138. this.SwitchSystemProxyLabel.Size = new System.Drawing.Size(147, 34);
  139. this.SwitchSystemProxyLabel.TabIndex = 0;
  140. this.SwitchSystemProxyLabel.Text = "Enable System Proxy";
  141. this.SwitchSystemProxyLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  142. //
  143. // SwitchProxyModeLabel
  144. //
  145. this.SwitchProxyModeLabel.AutoSize = true;
  146. this.SwitchProxyModeLabel.Dock = System.Windows.Forms.DockStyle.Right;
  147. this.SwitchProxyModeLabel.Location = new System.Drawing.Point(8, 34);
  148. this.SwitchProxyModeLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  149. this.SwitchProxyModeLabel.Name = "SwitchProxyModeLabel";
  150. this.SwitchProxyModeLabel.Size = new System.Drawing.Size(189, 34);
  151. this.SwitchProxyModeLabel.TabIndex = 1;
  152. this.SwitchProxyModeLabel.Text = "Switch System Proxy Mode";
  153. this.SwitchProxyModeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  154. //
  155. // SwitchAllowLanLabel
  156. //
  157. this.SwitchAllowLanLabel.AutoSize = true;
  158. this.SwitchAllowLanLabel.Dock = System.Windows.Forms.DockStyle.Right;
  159. this.SwitchAllowLanLabel.Location = new System.Drawing.Point(33, 68);
  160. this.SwitchAllowLanLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  161. this.SwitchAllowLanLabel.Name = "SwitchAllowLanLabel";
  162. this.SwitchAllowLanLabel.Size = new System.Drawing.Size(164, 34);
  163. this.SwitchAllowLanLabel.TabIndex = 3;
  164. this.SwitchAllowLanLabel.Text = "Allow Clients from LAN";
  165. this.SwitchAllowLanLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  166. //
  167. // ShowLogsLabel
  168. //
  169. this.ShowLogsLabel.AutoSize = true;
  170. this.ShowLogsLabel.Dock = System.Windows.Forms.DockStyle.Right;
  171. this.ShowLogsLabel.Location = new System.Drawing.Point(107, 102);
  172. this.ShowLogsLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  173. this.ShowLogsLabel.Name = "ShowLogsLabel";
  174. this.ShowLogsLabel.Size = new System.Drawing.Size(90, 34);
  175. this.ShowLogsLabel.TabIndex = 4;
  176. this.ShowLogsLabel.Text = "Show Logs...";
  177. this.ShowLogsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  178. //
  179. // ServerMoveUpLabel
  180. //
  181. this.ServerMoveUpLabel.AutoSize = true;
  182. this.ServerMoveUpLabel.Dock = System.Windows.Forms.DockStyle.Right;
  183. this.ServerMoveUpLabel.Location = new System.Drawing.Point(128, 136);
  184. this.ServerMoveUpLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  185. this.ServerMoveUpLabel.Name = "ServerMoveUpLabel";
  186. this.ServerMoveUpLabel.Size = new System.Drawing.Size(69, 35);
  187. this.ServerMoveUpLabel.TabIndex = 4;
  188. this.ServerMoveUpLabel.Text = "Move up";
  189. this.ServerMoveUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  190. //
  191. // ServerMoveDownLabel
  192. //
  193. this.ServerMoveDownLabel.AutoSize = true;
  194. this.ServerMoveDownLabel.Dock = System.Windows.Forms.DockStyle.Right;
  195. this.ServerMoveDownLabel.Location = new System.Drawing.Point(106, 171);
  196. this.ServerMoveDownLabel.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
  197. this.ServerMoveDownLabel.Name = "ServerMoveDownLabel";
  198. this.ServerMoveDownLabel.Size = new System.Drawing.Size(91, 34);
  199. this.ServerMoveDownLabel.TabIndex = 4;
  200. this.ServerMoveDownLabel.Text = "Move Down";
  201. this.ServerMoveDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  202. //
  203. // SwitchSystemProxyTextBox
  204. //
  205. this.SwitchSystemProxyTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  206. this.SwitchSystemProxyTextBox.Location = new System.Drawing.Point(208, 3);
  207. this.SwitchSystemProxyTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  208. this.SwitchSystemProxyTextBox.Name = "SwitchSystemProxyTextBox";
  209. this.SwitchSystemProxyTextBox.ReadOnly = true;
  210. this.SwitchSystemProxyTextBox.Size = new System.Drawing.Size(276, 25);
  211. this.SwitchSystemProxyTextBox.TabIndex = 7;
  212. this.SwitchSystemProxyTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  213. this.SwitchSystemProxyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  214. this.SwitchSystemProxyTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  215. //
  216. // SwitchProxyModeTextBox
  217. //
  218. this.SwitchProxyModeTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  219. this.SwitchProxyModeTextBox.Location = new System.Drawing.Point(208, 37);
  220. this.SwitchProxyModeTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  221. this.SwitchProxyModeTextBox.Name = "SwitchProxyModeTextBox";
  222. this.SwitchProxyModeTextBox.ReadOnly = true;
  223. this.SwitchProxyModeTextBox.Size = new System.Drawing.Size(276, 25);
  224. this.SwitchProxyModeTextBox.TabIndex = 8;
  225. this.SwitchProxyModeTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  226. this.SwitchProxyModeTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  227. this.SwitchProxyModeTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  228. //
  229. // SwitchAllowLanTextBox
  230. //
  231. this.SwitchAllowLanTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  232. this.SwitchAllowLanTextBox.Location = new System.Drawing.Point(208, 71);
  233. this.SwitchAllowLanTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  234. this.SwitchAllowLanTextBox.Name = "SwitchAllowLanTextBox";
  235. this.SwitchAllowLanTextBox.ReadOnly = true;
  236. this.SwitchAllowLanTextBox.Size = new System.Drawing.Size(276, 25);
  237. this.SwitchAllowLanTextBox.TabIndex = 10;
  238. this.SwitchAllowLanTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  239. this.SwitchAllowLanTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  240. this.SwitchAllowLanTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  241. //
  242. // ShowLogsTextBox
  243. //
  244. this.ShowLogsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  245. this.ShowLogsTextBox.Location = new System.Drawing.Point(208, 105);
  246. this.ShowLogsTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  247. this.ShowLogsTextBox.Name = "ShowLogsTextBox";
  248. this.ShowLogsTextBox.ReadOnly = true;
  249. this.ShowLogsTextBox.Size = new System.Drawing.Size(276, 25);
  250. this.ShowLogsTextBox.TabIndex = 11;
  251. this.ShowLogsTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  252. this.ShowLogsTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  253. this.ShowLogsTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  254. //
  255. // ServerMoveUpTextBox
  256. //
  257. this.ServerMoveUpTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  258. this.ServerMoveUpTextBox.Location = new System.Drawing.Point(208, 139);
  259. this.ServerMoveUpTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  260. this.ServerMoveUpTextBox.Name = "ServerMoveUpTextBox";
  261. this.ServerMoveUpTextBox.ReadOnly = true;
  262. this.ServerMoveUpTextBox.Size = new System.Drawing.Size(276, 25);
  263. this.ServerMoveUpTextBox.TabIndex = 12;
  264. this.ServerMoveUpTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  265. this.ServerMoveUpTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  266. this.ServerMoveUpTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  267. //
  268. // ServerMoveDownTextBox
  269. //
  270. this.ServerMoveDownTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  271. this.ServerMoveDownTextBox.Location = new System.Drawing.Point(208, 174);
  272. this.ServerMoveDownTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 16, 3);
  273. this.ServerMoveDownTextBox.Name = "ServerMoveDownTextBox";
  274. this.ServerMoveDownTextBox.ReadOnly = true;
  275. this.ServerMoveDownTextBox.Size = new System.Drawing.Size(276, 25);
  276. this.ServerMoveDownTextBox.TabIndex = 13;
  277. this.ServerMoveDownTextBox.TextChanged += new System.EventHandler(this.TextBox_TextChanged);
  278. this.ServerMoveDownTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HotkeyDown);
  279. this.ServerMoveDownTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HotkeyUp);
  280. //
  281. // HotkeySettingsForm
  282. //
  283. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  284. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  285. this.ClientSize = new System.Drawing.Size(491, 248);
  286. this.Controls.Add(this.tableLayoutPanel1);
  287. this.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  288. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  289. this.MaximizeBox = false;
  290. this.MinimizeBox = false;
  291. this.Name = "HotkeySettingsForm";
  292. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  293. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  294. this.Text = "Edit Hotkeys...";
  295. flowLayoutPanel1.ResumeLayout(false);
  296. this.tableLayoutPanel1.ResumeLayout(false);
  297. this.tableLayoutPanel1.PerformLayout();
  298. this.ResumeLayout(false);
  299. }
  300. #endregion
  301. private System.Windows.Forms.Label SwitchSystemProxyLabel;
  302. private System.Windows.Forms.Label SwitchProxyModeLabel;
  303. private System.Windows.Forms.Label SwitchAllowLanLabel;
  304. private System.Windows.Forms.Label ShowLogsLabel;
  305. private System.Windows.Forms.Label ServerMoveUpLabel;
  306. private System.Windows.Forms.Label ServerMoveDownLabel;
  307. private System.Windows.Forms.Button btnOK;
  308. private System.Windows.Forms.Button btnCancel;
  309. private System.Windows.Forms.TextBox ShowLogsTextBox;
  310. private System.Windows.Forms.TextBox SwitchAllowLanTextBox;
  311. private System.Windows.Forms.TextBox SwitchProxyModeTextBox;
  312. private System.Windows.Forms.TextBox SwitchSystemProxyTextBox;
  313. private System.Windows.Forms.TextBox ServerMoveUpTextBox;
  314. private System.Windows.Forms.TextBox ServerMoveDownTextBox;
  315. private System.Windows.Forms.Button btnRegisterAll;
  316. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  317. }
  318. }