FrmMain.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace Core.ONH.Collection.Receive
  2. {
  3. partial class FrmMain
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
  30. this.txtMessageShow = new System.Windows.Forms.TextBox();
  31. this.msMain = new System.Windows.Forms.MenuStrip();
  32. this.tsmComSetting = new System.Windows.Forms.ToolStripMenuItem();
  33. this.tsmClearData = new System.Windows.Forms.ToolStripMenuItem();
  34. this.tsmExit = new System.Windows.Forms.ToolStripMenuItem();
  35. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  36. this.msMain.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // txtMessageShow
  40. //
  41. this.txtMessageShow.BackColor = System.Drawing.SystemColors.MenuBar;
  42. this.txtMessageShow.Dock = System.Windows.Forms.DockStyle.Fill;
  43. this.txtMessageShow.Location = new System.Drawing.Point(0, 28);
  44. this.txtMessageShow.Margin = new System.Windows.Forms.Padding(4);
  45. this.txtMessageShow.MaxLength = 9999999;
  46. this.txtMessageShow.Multiline = true;
  47. this.txtMessageShow.Name = "txtMessageShow";
  48. this.txtMessageShow.ReadOnly = true;
  49. this.txtMessageShow.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  50. this.txtMessageShow.Size = new System.Drawing.Size(930, 535);
  51. this.txtMessageShow.TabIndex = 2;
  52. this.txtMessageShow.WordWrap = false;
  53. //
  54. // msMain
  55. //
  56. this.msMain.ImageScalingSize = new System.Drawing.Size(20, 20);
  57. this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  58. this.tsmComSetting,
  59. this.tsmClearData,
  60. this.tsmExit});
  61. this.msMain.Location = new System.Drawing.Point(0, 0);
  62. this.msMain.Name = "msMain";
  63. this.msMain.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
  64. this.msMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
  65. this.msMain.Size = new System.Drawing.Size(930, 28);
  66. this.msMain.TabIndex = 3;
  67. this.msMain.Text = "串口设置";
  68. this.msMain.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.msMain_ItemClicked);
  69. //
  70. // tsmComSetting
  71. //
  72. this.tsmComSetting.Image = ((System.Drawing.Image)(resources.GetObject("tsmComSetting.Image")));
  73. this.tsmComSetting.Name = "tsmComSetting";
  74. this.tsmComSetting.Size = new System.Drawing.Size(120, 24);
  75. this.tsmComSetting.Text = "串口设置(&S)";
  76. //
  77. // tsmClearData
  78. //
  79. this.tsmClearData.Image = ((System.Drawing.Image)(resources.GetObject("tsmClearData.Image")));
  80. this.tsmClearData.Name = "tsmClearData";
  81. this.tsmClearData.Size = new System.Drawing.Size(121, 24);
  82. this.tsmClearData.Text = "数据清空(&C)";
  83. //
  84. // tsmExit
  85. //
  86. this.tsmExit.Image = ((System.Drawing.Image)(resources.GetObject("tsmExit.Image")));
  87. this.tsmExit.Name = "tsmExit";
  88. this.tsmExit.Size = new System.Drawing.Size(91, 24);
  89. this.tsmExit.Text = "退出(&X)";
  90. //
  91. // notifyIcon1
  92. //
  93. this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Warning;
  94. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  95. this.notifyIcon1.Text = "成分采集程序";
  96. this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
  97. //
  98. // FrmMain
  99. //
  100. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  101. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102. this.ClientSize = new System.Drawing.Size(930, 563);
  103. this.Controls.Add(this.txtMessageShow);
  104. this.Controls.Add(this.msMain);
  105. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  106. this.Name = "FrmMain";
  107. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  108. this.Text = "ONH采集程序";
  109. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
  110. this.Load += new System.EventHandler(this.FrmMain_Load);
  111. this.Resize += new System.EventHandler(this.FrmMain_Resize);
  112. this.msMain.ResumeLayout(false);
  113. this.msMain.PerformLayout();
  114. this.ResumeLayout(false);
  115. this.PerformLayout();
  116. }
  117. #endregion
  118. private System.Windows.Forms.TextBox txtMessageShow;
  119. private System.Windows.Forms.MenuStrip msMain;
  120. private System.Windows.Forms.ToolStripMenuItem tsmComSetting;
  121. private System.Windows.Forms.ToolStripMenuItem tsmClearData;
  122. private System.Windows.Forms.ToolStripMenuItem tsmExit;
  123. private System.Windows.Forms.NotifyIcon notifyIcon1;
  124. }
  125. }