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

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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  31. this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components);
  32. this.menuItem1 = new System.Windows.Forms.MenuItem();
  33. this.menuItem2 = new System.Windows.Forms.MenuItem();
  34. this.menuItem4 = new System.Windows.Forms.MenuItem();
  35. this.SuspendLayout();
  36. //
  37. // textBox1
  38. //
  39. this.textBox1.BackColor = System.Drawing.Color.Black;
  40. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  41. this.textBox1.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  42. this.textBox1.ForeColor = System.Drawing.Color.White;
  43. this.textBox1.Location = new System.Drawing.Point(0, 0);
  44. this.textBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  45. this.textBox1.MaxLength = 2147483647;
  46. this.textBox1.Multiline = true;
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.ReadOnly = true;
  49. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  50. this.textBox1.Size = new System.Drawing.Size(820, 529);
  51. this.textBox1.TabIndex = 0;
  52. this.textBox1.WordWrap = false;
  53. //
  54. // contextMenuStrip1
  55. //
  56. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
  57. this.contextMenuStrip1.Name = "contextMenuStrip1";
  58. this.contextMenuStrip1.Size = new System.Drawing.Size(74, 4);
  59. //
  60. // mainMenu1
  61. //
  62. this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  63. this.menuItem1});
  64. //
  65. // menuItem1
  66. //
  67. this.menuItem1.Index = 0;
  68. this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  69. this.menuItem2,
  70. this.menuItem4});
  71. this.menuItem1.Text = "&File";
  72. //
  73. // menuItem2
  74. //
  75. this.menuItem2.Index = 0;
  76. this.menuItem2.Text = "&Open Location";
  77. this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
  78. //
  79. // menuItem4
  80. //
  81. this.menuItem4.Index = 1;
  82. this.menuItem4.Text = "E&xit";
  83. this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
  84. //
  85. // LogForm
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.ClientSize = new System.Drawing.Size(820, 529);
  90. this.Controls.Add(this.textBox1);
  91. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  92. this.Menu = this.mainMenu1;
  93. this.Name = "LogForm";
  94. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  95. this.Text = "Log Viewer";
  96. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LogForm_FormClosing);
  97. this.Load += new System.EventHandler(this.LogForm_Load);
  98. this.Shown += new System.EventHandler(this.LogForm_Shown);
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.TextBox textBox1;
  104. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  105. private System.Windows.Forms.MainMenu mainMenu1;
  106. private System.Windows.Forms.MenuItem menuItem1;
  107. private System.Windows.Forms.MenuItem menuItem2;
  108. private System.Windows.Forms.MenuItem menuItem4;
  109. }
  110. }