Form1.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. namespace data_displayer
  2. {
  3. partial class Form1
  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. components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. label1 = new Label();
  31. timer1 = new System.Windows.Forms.Timer(components);
  32. label2 = new Label();
  33. notifyIcon1 = new NotifyIcon(components);
  34. contextMenuStrip1 = new ContextMenuStrip(components);
  35. settingsToolStripMenuItem = new ToolStripMenuItem();
  36. aboutToolStripMenuItem = new ToolStripMenuItem();
  37. label3 = new Label();
  38. contextMenuStrip1.SuspendLayout();
  39. SuspendLayout();
  40. //
  41. // label1
  42. //
  43. label1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
  44. label1.Location = new Point(12, 9);
  45. label1.Name = "label1";
  46. label1.Size = new Size(197, 15);
  47. label1.TabIndex = 0;
  48. label1.Text = "label1";
  49. label1.TextAlign = ContentAlignment.MiddleRight;
  50. //
  51. // timer1
  52. //
  53. timer1.Enabled = true;
  54. timer1.Interval = 1;
  55. timer1.Tick += timer1_Tick;
  56. //
  57. // label2
  58. //
  59. label2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
  60. label2.Location = new Point(12, 24);
  61. label2.Name = "label2";
  62. label2.Size = new Size(197, 15);
  63. label2.TabIndex = 1;
  64. label2.Text = "label2";
  65. label2.TextAlign = ContentAlignment.MiddleRight;
  66. //
  67. // notifyIcon1
  68. //
  69. notifyIcon1.ContextMenuStrip = contextMenuStrip1;
  70. notifyIcon1.Icon = (Icon)resources.GetObject("notifyIcon1.Icon");
  71. notifyIcon1.Text = "notifyIcon1";
  72. notifyIcon1.Visible = true;
  73. //
  74. // contextMenuStrip1
  75. //
  76. contextMenuStrip1.Items.AddRange(new ToolStripItem[] { settingsToolStripMenuItem, aboutToolStripMenuItem });
  77. contextMenuStrip1.Name = "contextMenuStrip1";
  78. contextMenuStrip1.Size = new Size(117, 48);
  79. //
  80. // settingsToolStripMenuItem
  81. //
  82. settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
  83. settingsToolStripMenuItem.Size = new Size(116, 22);
  84. settingsToolStripMenuItem.Text = "Settings";
  85. settingsToolStripMenuItem.Click += settingsToolStripMenuItem_Click;
  86. //
  87. // aboutToolStripMenuItem
  88. //
  89. aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
  90. aboutToolStripMenuItem.Size = new Size(116, 22);
  91. aboutToolStripMenuItem.Text = "About";
  92. aboutToolStripMenuItem.Click += aboutToolStripMenuItem_Click;
  93. //
  94. // label3
  95. //
  96. label3.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
  97. label3.Location = new Point(12, 39);
  98. label3.Name = "label3";
  99. label3.Size = new Size(197, 15);
  100. label3.TabIndex = 2;
  101. label3.Text = "label3";
  102. label3.TextAlign = ContentAlignment.MiddleRight;
  103. //
  104. // Form1
  105. //
  106. AutoScaleDimensions = new SizeF(7F, 15F);
  107. AutoScaleMode = AutoScaleMode.Font;
  108. AutoSize = true;
  109. BackColor = SystemColors.Window;
  110. ClientSize = new Size(221, 64);
  111. Controls.Add(label3);
  112. Controls.Add(label2);
  113. Controls.Add(label1);
  114. FormBorderStyle = FormBorderStyle.None;
  115. Icon = (Icon)resources.GetObject("$this.Icon");
  116. Name = "Form1";
  117. ShowInTaskbar = false;
  118. Text = "data_displayer";
  119. Load += Form1_Load;
  120. contextMenuStrip1.ResumeLayout(false);
  121. ResumeLayout(false);
  122. }
  123. #endregion
  124. private Label label1;
  125. private System.Windows.Forms.Timer timer1;
  126. private Label label2;
  127. private NotifyIcon notifyIcon1;
  128. private Label label3;
  129. private ContextMenuStrip contextMenuStrip1;
  130. private ToolStripMenuItem settingsToolStripMenuItem;
  131. private ToolStripMenuItem aboutToolStripMenuItem;
  132. }
  133. }