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.

LogForm.Designer.cs 19 kB

10 years ago
5 years ago
10 years ago
10 years ago
10 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
5 years ago
10 years ago
10 years ago
5 years ago
5 years ago
5 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. namespace Shadowsocks.View
  2. {
  3. partial class LogForm
  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. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  30. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  31. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  32. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  33. this.LogMessageTextBox = new System.Windows.Forms.TextBox();
  34. this.MainMenu = new System.Windows.Forms.MenuStrip();
  35. this.FileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.OpenLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.ViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.ClearLogsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.ChangeFontToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.WrapTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.TopMostToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.ToolStripMenuItemSeparater = new System.Windows.Forms.ToolStripMenuItem();
  44. this.ShowToolbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  45. this.TopMostCheckBox = new System.Windows.Forms.CheckBox();
  46. this.ChangeFontButton = new System.Windows.Forms.Button();
  47. this.ClearLogsButton = new System.Windows.Forms.Button();
  48. this.WrapTextCheckBox = new System.Windows.Forms.CheckBox();
  49. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  50. this.ToolbarFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
  51. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  52. this.trafficChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
  53. this.tableLayoutPanel1.SuspendLayout();
  54. this.ToolbarFlowLayoutPanel.SuspendLayout();
  55. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  56. this.splitContainer1.Panel1.SuspendLayout();
  57. this.splitContainer1.Panel2.SuspendLayout();
  58. this.splitContainer1.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.trafficChart)).BeginInit();
  60. this.SuspendLayout();
  61. //
  62. // LogMessageTextBox
  63. //
  64. this.LogMessageTextBox.BackColor = System.Drawing.Color.Black;
  65. this.LogMessageTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  66. this.LogMessageTextBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  67. this.LogMessageTextBox.ForeColor = System.Drawing.Color.White;
  68. this.LogMessageTextBox.Location = new System.Drawing.Point(0, 0);
  69. this.LogMessageTextBox.MaxLength = 2147483647;
  70. this.LogMessageTextBox.Multiline = true;
  71. this.LogMessageTextBox.Name = "LogMessageTextBox";
  72. this.LogMessageTextBox.ReadOnly = true;
  73. this.LogMessageTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  74. this.LogMessageTextBox.Size = new System.Drawing.Size(378, 74);
  75. this.LogMessageTextBox.TabIndex = 0;
  76. //
  77. // MainMenu
  78. //
  79. this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
  80. this.FileToolStripMenuItem,
  81. this.ViewToolStripMenuItem});
  82. //
  83. // FileToolStripMenuItem
  84. //
  85. this.FileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
  86. this.OpenLocationToolStripMenuItem,
  87. this.ExitToolStripMenuItem});
  88. this.FileToolStripMenuItem.Text = "&File";
  89. //
  90. // OpenLocationToolStripMenuItem
  91. //
  92. this.OpenLocationToolStripMenuItem.Text = "&Open Location";
  93. this.OpenLocationToolStripMenuItem.Click += new System.EventHandler(this.OpenLocationToolStripMenuItem_Click);
  94. //
  95. // ExitToolStripMenuItem
  96. //
  97. this.ExitToolStripMenuItem.Text = "E&xit";
  98. this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
  99. //
  100. // ViewToolStripMenuItem
  101. //
  102. this.ViewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
  103. this.ClearLogsToolStripMenuItem,
  104. this.ChangeFontToolStripMenuItem,
  105. this.WrapTextToolStripMenuItem,
  106. this.TopMostToolStripMenuItem,
  107. this.ToolStripMenuItemSeparater,
  108. this.ShowToolbarToolStripMenuItem});
  109. this.ViewToolStripMenuItem.Text = "&View";
  110. //
  111. // ClearLogsToolStripMenuItem
  112. //
  113. this.ClearLogsToolStripMenuItem.Text = "&Clear Logs";
  114. this.ClearLogsToolStripMenuItem.Click += new System.EventHandler(this.ClearLogsToolStripMenuItem_Click);
  115. //
  116. // ChangeFontToolStripMenuItem
  117. //
  118. this.ChangeFontToolStripMenuItem.Text = "Change &Font";
  119. this.ChangeFontToolStripMenuItem.Click += new System.EventHandler(this.ChangeFontToolStripMenuItem_Click);
  120. //
  121. // WrapTextToolStripMenuItem
  122. //
  123. this.WrapTextToolStripMenuItem.Text = "&Wrap Text";
  124. this.WrapTextToolStripMenuItem.Click += new System.EventHandler(this.WrapTextToolStripMenuItem_Click);
  125. //
  126. // TopMostToolStripMenuItem
  127. //
  128. this.TopMostToolStripMenuItem.Text = "&Top Most";
  129. this.TopMostToolStripMenuItem.Click += new System.EventHandler(this.TopMostToolStripMenuItem_Click);
  130. //
  131. // ToolStripMenuItemSeparater
  132. //
  133. this.ToolStripMenuItemSeparater.Text = "-";
  134. //
  135. // ShowToolbarToolStripMenuItem
  136. //
  137. this.ShowToolbarToolStripMenuItem.Text = "&Show Toolbar";
  138. this.ShowToolbarToolStripMenuItem.Click += new System.EventHandler(this.ShowToolbarToolStripMenuItem_Click);
  139. //
  140. // TopMostCheckBox
  141. //
  142. this.TopMostCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  143. | System.Windows.Forms.AnchorStyles.Left)));
  144. this.TopMostCheckBox.AutoSize = true;
  145. this.TopMostCheckBox.Location = new System.Drawing.Point(249, 3);
  146. this.TopMostCheckBox.Name = "TopMostCheckBox";
  147. this.TopMostCheckBox.Size = new System.Drawing.Size(72, 23);
  148. this.TopMostCheckBox.TabIndex = 3;
  149. this.TopMostCheckBox.Text = "&Top Most";
  150. this.TopMostCheckBox.UseVisualStyleBackColor = true;
  151. this.TopMostCheckBox.CheckedChanged += new System.EventHandler(this.TopMostCheckBox_CheckedChanged);
  152. //
  153. // ChangeFontButton
  154. //
  155. this.ChangeFontButton.AutoSize = true;
  156. this.ChangeFontButton.Location = new System.Drawing.Point(84, 3);
  157. this.ChangeFontButton.Name = "ChangeFontButton";
  158. this.ChangeFontButton.Size = new System.Drawing.Size(75, 23);
  159. this.ChangeFontButton.TabIndex = 2;
  160. this.ChangeFontButton.Text = "&Font";
  161. this.ChangeFontButton.UseVisualStyleBackColor = true;
  162. this.ChangeFontButton.Click += new System.EventHandler(this.ChangeFontButton_Click);
  163. //
  164. // ClearLogsButton
  165. //
  166. this.ClearLogsButton.AutoSize = true;
  167. this.ClearLogsButton.Location = new System.Drawing.Point(3, 3);
  168. this.ClearLogsButton.Name = "ClearLogsButton";
  169. this.ClearLogsButton.Size = new System.Drawing.Size(75, 23);
  170. this.ClearLogsButton.TabIndex = 1;
  171. this.ClearLogsButton.Text = "&Clear Logs";
  172. this.ClearLogsButton.UseVisualStyleBackColor = true;
  173. this.ClearLogsButton.Click += new System.EventHandler(this.ClearLogsButton_Click);
  174. //
  175. // WrapTextCheckBox
  176. //
  177. this.WrapTextCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  178. | System.Windows.Forms.AnchorStyles.Left)));
  179. this.WrapTextCheckBox.AutoSize = true;
  180. this.WrapTextCheckBox.Location = new System.Drawing.Point(165, 3);
  181. this.WrapTextCheckBox.Name = "WrapTextCheckBox";
  182. this.WrapTextCheckBox.Size = new System.Drawing.Size(78, 23);
  183. this.WrapTextCheckBox.TabIndex = 0;
  184. this.WrapTextCheckBox.Text = "&Wrap Text";
  185. this.WrapTextCheckBox.UseVisualStyleBackColor = true;
  186. this.WrapTextCheckBox.CheckedChanged += new System.EventHandler(this.WrapTextCheckBox_CheckedChanged);
  187. //
  188. // tableLayoutPanel1
  189. //
  190. this.tableLayoutPanel1.ColumnCount = 1;
  191. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  192. this.tableLayoutPanel1.Controls.Add(this.ToolbarFlowLayoutPanel, 0, 0);
  193. this.tableLayoutPanel1.Controls.Add(this.splitContainer1, 0, 1);
  194. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  195. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  196. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  197. this.tableLayoutPanel1.RowCount = 2;
  198. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  199. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  200. this.tableLayoutPanel1.Size = new System.Drawing.Size(384, 161);
  201. this.tableLayoutPanel1.TabIndex = 2;
  202. //
  203. // ToolbarFlowLayoutPanel
  204. //
  205. this.ToolbarFlowLayoutPanel.AutoSize = true;
  206. this.ToolbarFlowLayoutPanel.Controls.Add(this.ClearLogsButton);
  207. this.ToolbarFlowLayoutPanel.Controls.Add(this.ChangeFontButton);
  208. this.ToolbarFlowLayoutPanel.Controls.Add(this.WrapTextCheckBox);
  209. this.ToolbarFlowLayoutPanel.Controls.Add(this.TopMostCheckBox);
  210. this.ToolbarFlowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  211. this.ToolbarFlowLayoutPanel.Location = new System.Drawing.Point(3, 3);
  212. this.ToolbarFlowLayoutPanel.Name = "ToolbarFlowLayoutPanel";
  213. this.ToolbarFlowLayoutPanel.Size = new System.Drawing.Size(378, 29);
  214. this.ToolbarFlowLayoutPanel.TabIndex = 2;
  215. //
  216. // splitContainer1
  217. //
  218. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  219. this.splitContainer1.Location = new System.Drawing.Point(3, 38);
  220. this.splitContainer1.Name = "splitContainer1";
  221. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  222. //
  223. // splitContainer1.Panel1
  224. //
  225. this.splitContainer1.Panel1.Controls.Add(this.LogMessageTextBox);
  226. //
  227. // splitContainer1.Panel2
  228. //
  229. this.splitContainer1.Panel2.Controls.Add(this.trafficChart);
  230. this.splitContainer1.Size = new System.Drawing.Size(378, 120);
  231. this.splitContainer1.SplitterDistance = 74;
  232. this.splitContainer1.TabIndex = 3;
  233. //
  234. // trafficChart
  235. //
  236. chartArea1.AxisX.LabelStyle.Enabled = false;
  237. chartArea1.AxisX.MajorGrid.Interval = 5D;
  238. chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
  239. chartArea1.AxisX.MajorTickMark.Enabled = false;
  240. chartArea1.AxisX.Maximum = 61D;
  241. chartArea1.AxisX.Minimum = 1D;
  242. chartArea1.AxisY.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
  243. chartArea1.AxisY.LabelAutoFitMaxFontSize = 8;
  244. chartArea1.AxisY.LabelStyle.Interval = 0D;
  245. chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
  246. chartArea1.AxisY.MajorTickMark.Enabled = false;
  247. chartArea1.AxisY2.MajorGrid.LineColor = System.Drawing.Color.LightGray;
  248. chartArea1.AxisY2.Minimum = 0D;
  249. chartArea1.Name = "ChartArea1";
  250. this.trafficChart.ChartAreas.Add(chartArea1);
  251. this.trafficChart.Dock = System.Windows.Forms.DockStyle.Fill;
  252. legend1.MaximumAutoSize = 25F;
  253. legend1.Name = "Legend1";
  254. this.trafficChart.Legends.Add(legend1);
  255. this.trafficChart.Location = new System.Drawing.Point(0, 0);
  256. this.trafficChart.Name = "trafficChart";
  257. this.trafficChart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
  258. series1.BorderWidth = 2;
  259. series1.ChartArea = "ChartArea1";
  260. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  261. series1.Color = System.Drawing.Color.FromArgb(255, 128, 0);
  262. series1.IsXValueIndexed = true;
  263. series1.Legend = "Legend1";
  264. series1.Name = "Inbound";
  265. series2.BorderWidth = 2;
  266. series2.ChartArea = "ChartArea1";
  267. series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  268. series2.Color = System.Drawing.Color.FromArgb(128, 128, 255);
  269. series2.IsXValueIndexed = true;
  270. series2.Legend = "Legend1";
  271. series2.Name = "Outbound";
  272. this.trafficChart.Series.Add(series1);
  273. this.trafficChart.Series.Add(series2);
  274. this.trafficChart.Size = new System.Drawing.Size(378, 42);
  275. this.trafficChart.TabIndex = 0;
  276. this.trafficChart.Text = "chart1";
  277. //
  278. // LogForm
  279. //
  280. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  281. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  282. this.ClientSize = new System.Drawing.Size(384, 161);
  283. this.Controls.Add(this.tableLayoutPanel1);
  284. this.MainMenuStrip = this.MainMenu;
  285. this.MinimumSize = new System.Drawing.Size(400, 200);
  286. this.Name = "LogForm";
  287. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  288. this.Text = "Log Viewer";
  289. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LogForm_FormClosing);
  290. this.Load += new System.EventHandler(this.LogForm_Load);
  291. this.Shown += new System.EventHandler(this.LogForm_Shown);
  292. this.tableLayoutPanel1.ResumeLayout(false);
  293. this.tableLayoutPanel1.PerformLayout();
  294. this.ToolbarFlowLayoutPanel.ResumeLayout(false);
  295. this.ToolbarFlowLayoutPanel.PerformLayout();
  296. this.splitContainer1.Panel1.ResumeLayout(false);
  297. this.splitContainer1.Panel1.PerformLayout();
  298. this.splitContainer1.Panel2.ResumeLayout(false);
  299. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  300. this.splitContainer1.ResumeLayout(false);
  301. ((System.ComponentModel.ISupportInitialize)(this.trafficChart)).EndInit();
  302. this.ResumeLayout(false);
  303. }
  304. #endregion
  305. private System.Windows.Forms.TextBox LogMessageTextBox;
  306. private System.Windows.Forms.MenuStrip MainMenu;
  307. private System.Windows.Forms.ToolStripMenuItem FileToolStripMenuItem;
  308. private System.Windows.Forms.ToolStripMenuItem OpenLocationToolStripMenuItem;
  309. private System.Windows.Forms.ToolStripMenuItem ExitToolStripMenuItem;
  310. private System.Windows.Forms.CheckBox WrapTextCheckBox;
  311. private System.Windows.Forms.Button ClearLogsButton;
  312. private System.Windows.Forms.Button ChangeFontButton;
  313. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  314. private System.Windows.Forms.CheckBox TopMostCheckBox;
  315. private System.Windows.Forms.ToolStripMenuItem ViewToolStripMenuItem;
  316. private System.Windows.Forms.ToolStripMenuItem ClearLogsToolStripMenuItem;
  317. private System.Windows.Forms.ToolStripMenuItem ChangeFontToolStripMenuItem;
  318. private System.Windows.Forms.ToolStripMenuItem WrapTextToolStripMenuItem;
  319. private System.Windows.Forms.ToolStripMenuItem TopMostToolStripMenuItem;
  320. private System.Windows.Forms.FlowLayoutPanel ToolbarFlowLayoutPanel;
  321. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItemSeparater;
  322. private System.Windows.Forms.ToolStripMenuItem ShowToolbarToolStripMenuItem;
  323. private System.Windows.Forms.SplitContainer splitContainer1;
  324. private System.Windows.Forms.DataVisualization.Charting.Chart trafficChart;
  325. }
  326. }