| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- namespace Core.ONH.Collection.Receive
- {
- partial class FrmMain
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
- this.txtMessageShow = new System.Windows.Forms.TextBox();
- this.msMain = new System.Windows.Forms.MenuStrip();
- this.tsmComSetting = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmClearData = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmExit = new System.Windows.Forms.ToolStripMenuItem();
- this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
- this.msMain.SuspendLayout();
- this.SuspendLayout();
- //
- // txtMessageShow
- //
- this.txtMessageShow.BackColor = System.Drawing.SystemColors.MenuBar;
- this.txtMessageShow.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtMessageShow.Location = new System.Drawing.Point(0, 28);
- this.txtMessageShow.Margin = new System.Windows.Forms.Padding(4);
- this.txtMessageShow.MaxLength = 9999999;
- this.txtMessageShow.Multiline = true;
- this.txtMessageShow.Name = "txtMessageShow";
- this.txtMessageShow.ReadOnly = true;
- this.txtMessageShow.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.txtMessageShow.Size = new System.Drawing.Size(930, 535);
- this.txtMessageShow.TabIndex = 2;
- this.txtMessageShow.WordWrap = false;
- //
- // msMain
- //
- this.msMain.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsmComSetting,
- this.tsmClearData,
- this.tsmExit});
- this.msMain.Location = new System.Drawing.Point(0, 0);
- this.msMain.Name = "msMain";
- this.msMain.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
- this.msMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
- this.msMain.Size = new System.Drawing.Size(930, 28);
- this.msMain.TabIndex = 3;
- this.msMain.Text = "串口设置";
- this.msMain.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.msMain_ItemClicked);
- //
- // tsmComSetting
- //
- this.tsmComSetting.Image = ((System.Drawing.Image)(resources.GetObject("tsmComSetting.Image")));
- this.tsmComSetting.Name = "tsmComSetting";
- this.tsmComSetting.Size = new System.Drawing.Size(120, 24);
- this.tsmComSetting.Text = "串口设置(&S)";
- //
- // tsmClearData
- //
- this.tsmClearData.Image = ((System.Drawing.Image)(resources.GetObject("tsmClearData.Image")));
- this.tsmClearData.Name = "tsmClearData";
- this.tsmClearData.Size = new System.Drawing.Size(121, 24);
- this.tsmClearData.Text = "数据清空(&C)";
- //
- // tsmExit
- //
- this.tsmExit.Image = ((System.Drawing.Image)(resources.GetObject("tsmExit.Image")));
- this.tsmExit.Name = "tsmExit";
- this.tsmExit.Size = new System.Drawing.Size(91, 24);
- this.tsmExit.Text = "退出(&X)";
- //
- // notifyIcon1
- //
- this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Warning;
- this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
- this.notifyIcon1.Text = "成分采集程序";
- this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
- //
- // FrmMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(930, 563);
- this.Controls.Add(this.txtMessageShow);
- this.Controls.Add(this.msMain);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "FrmMain";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "ONH采集程序";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
- this.Load += new System.EventHandler(this.FrmMain_Load);
- this.Resize += new System.EventHandler(this.FrmMain_Resize);
- this.msMain.ResumeLayout(false);
- this.msMain.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox txtMessageShow;
- private System.Windows.Forms.MenuStrip msMain;
- private System.Windows.Forms.ToolStripMenuItem tsmComSetting;
- private System.Windows.Forms.ToolStripMenuItem tsmClearData;
- private System.Windows.Forms.ToolStripMenuItem tsmExit;
- private System.Windows.Forms.NotifyIcon notifyIcon1;
- }
- }
|