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

11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.MaxLength = 2147483647;
  45. this.textBox1.Multiline = true;
  46. this.textBox1.Name = "textBox1";
  47. this.textBox1.ReadOnly = true;
  48. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  49. this.textBox1.Size = new System.Drawing.Size(547, 382);
  50. this.textBox1.TabIndex = 0;
  51. this.textBox1.WordWrap = false;
  52. //
  53. // contextMenuStrip1
  54. //
  55. this.contextMenuStrip1.Name = "contextMenuStrip1";
  56. this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
  57. //
  58. // mainMenu1
  59. //
  60. this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  61. this.menuItem1});
  62. //
  63. // menuItem1
  64. //
  65. this.menuItem1.Index = 0;
  66. this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
  67. this.menuItem2,
  68. this.menuItem4});
  69. this.menuItem1.Text = "&File";
  70. //
  71. // menuItem2
  72. //
  73. this.menuItem2.Index = 0;
  74. this.menuItem2.Text = "&Open Location";
  75. this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
  76. //
  77. // menuItem4
  78. //
  79. this.menuItem4.Index = 1;
  80. this.menuItem4.Text = "E&xit";
  81. this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
  82. //
  83. // LogForm
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.ClientSize = new System.Drawing.Size(547, 382);
  88. this.Controls.Add(this.textBox1);
  89. this.Menu = this.mainMenu1;
  90. this.Name = "LogForm";
  91. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  92. this.Text = "Log Viewer";
  93. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LogForm_FormClosing);
  94. this.Load += new System.EventHandler(this.LogForm_Load);
  95. this.Shown += new System.EventHandler(this.LogForm_Shown);
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.TextBox textBox1;
  101. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  102. private System.Windows.Forms.MainMenu mainMenu1;
  103. private System.Windows.Forms.MenuItem menuItem1;
  104. private System.Windows.Forms.MenuItem menuItem2;
  105. private System.Windows.Forms.MenuItem menuItem4;
  106. }
  107. }