namespace CardReaderService { using System; partial class CardReaderService { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CardReaderService)); this.txtMsg = new System.Windows.Forms.TextBox(); this.notifyCardReaderIcon = new System.Windows.Forms.NotifyIcon(this.components); this.contextMenuStripForNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components); this.退出程序ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.labelForTxtPort = new System.Windows.Forms.Label(); this.contextMenuStripForNotifyIcon.SuspendLayout(); this.SuspendLayout(); // // txtMsg // this.txtMsg.Location = new System.Drawing.Point(12, 32); this.txtMsg.Multiline = true; this.txtMsg.Name = "txtMsg"; this.txtMsg.Size = new System.Drawing.Size(279, 284); this.txtMsg.TabIndex = 0; // // notifyCardReaderIcon // this.notifyCardReaderIcon.ContextMenuStrip = this.contextMenuStripForNotifyIcon; this.notifyCardReaderIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyCardReaderIcon.Icon"))); this.notifyCardReaderIcon.Text = "notifyIcon1"; this.notifyCardReaderIcon.Visible = true; this.notifyCardReaderIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyCardReaderIcon_MouseDoubleClick); // // contextMenuStripForNotifyIcon // this.contextMenuStripForNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.退出程序ToolStripMenuItem}); this.contextMenuStripForNotifyIcon.Name = "contextMenuStripForNotifyIcon"; this.contextMenuStripForNotifyIcon.Size = new System.Drawing.Size(125, 26); // // 退出程序ToolStripMenuItem // this.退出程序ToolStripMenuItem.Name = "退出程序ToolStripMenuItem"; this.退出程序ToolStripMenuItem.Size = new System.Drawing.Size(124, 22); this.退出程序ToolStripMenuItem.Text = "退出程序"; this.退出程序ToolStripMenuItem.Click += new System.EventHandler(this.退出程序ToolStripMenuItem_Click); // // labelForTxtPort // this.labelForTxtPort.AutoSize = true; this.labelForTxtPort.Location = new System.Drawing.Point(12, 9); this.labelForTxtPort.Name = "labelForTxtPort"; this.labelForTxtPort.Size = new System.Drawing.Size(65, 12); this.labelForTxtPort.TabIndex = 1; this.labelForTxtPort.Text = "日志信息:"; // // CardReaderService // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(304, 328); this.Controls.Add(this.labelForTxtPort); this.Controls.Add(this.txtMsg); this.MaximizeBox = false; this.Name = "CardReaderService"; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "读卡服务程序"; // this.TopMost = true; this.WindowState = System.Windows.Forms.FormWindowState.Minimized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CardReaderService_FormClosing); this.Load += new System.EventHandler(this.CardReaderService_Load); this.SizeChanged += new System.EventHandler(this.CardReaderService_SizeChanged); this.contextMenuStripForNotifyIcon.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtMsg; private System.Windows.Forms.NotifyIcon notifyCardReaderIcon; private System.Windows.Forms.ToolStripMenuItem 退出程序ToolStripMenuItem; private System.Windows.Forms.Label labelForTxtPort; public System.Windows.Forms.ContextMenuStrip contextMenuStripForNotifyIcon; } }