CardReaderService.Designer.cs 5.12 KB
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
namespace CardReaderService
{
using System;
partial class CardReaderService
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows 窗体设计器生成的代码

/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
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;
}
}