1 namespace TestWinForms
3 partial class MailNotifier
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.components = new System.ComponentModel.Container();
32 this.serSerialPort = new System.IO.Ports.SerialPort(this.components);
33 this.cmbComPort = new System.Windows.Forms.ComboBox();
34 this.lblComPort = new System.Windows.Forms.Label();
35 this.btnMinimize = new System.Windows.Forms.Button();
36 this.btnExit = new System.Windows.Forms.Button();
37 this.nicoNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
42 this.cmbComPort.FormattingEnabled = true;
43 this.cmbComPort.Location = new System.Drawing.Point(108, 12);
44 this.cmbComPort.Name = "cmbComPort";
45 this.cmbComPort.Size = new System.Drawing.Size(126, 21);
46 this.cmbComPort.TabIndex = 0;
47 this.cmbComPort.SelectedIndexChanged += new System.EventHandler(this.cmbComPort_SelectedIndexChanged);
51 this.lblComPort.AutoSize = true;
52 this.lblComPort.Location = new System.Drawing.Point(12, 15);
53 this.lblComPort.Name = "lblComPort";
54 this.lblComPort.Size = new System.Drawing.Size(90, 13);
55 this.lblComPort.TabIndex = 1;
56 this.lblComPort.Text = "COM Port to Use:";
60 this.btnMinimize.Location = new System.Drawing.Point(12, 42);
61 this.btnMinimize.Name = "btnMinimize";
62 this.btnMinimize.Size = new System.Drawing.Size(109, 23);
63 this.btnMinimize.TabIndex = 2;
64 this.btnMinimize.Text = "Minimize to Tray";
65 this.btnMinimize.UseVisualStyleBackColor = true;
66 this.btnMinimize.Click += new System.EventHandler(this.btnMinimize_Click);
70 this.btnExit.Location = new System.Drawing.Point(131, 42);
71 this.btnExit.Name = "btnExit";
72 this.btnExit.Size = new System.Drawing.Size(109, 23);
73 this.btnExit.TabIndex = 3;
74 this.btnExit.Text = "Exit";
75 this.btnExit.UseVisualStyleBackColor = true;
76 this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
80 this.nicoNotifyIcon.Text = "Mail Notifier";
81 this.nicoNotifyIcon.Visible = true;
85 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
86 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
87 this.ClientSize = new System.Drawing.Size(252, 77);
88 this.Controls.Add(this.btnExit);
89 this.Controls.Add(this.btnMinimize);
90 this.Controls.Add(this.lblComPort);
91 this.Controls.Add(this.cmbComPort);
92 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
93 this.MaximizeBox = false;
94 this.Name = "MailNotifier";
95 this.Text = "Mail Notifier Light";
96 this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
97 this.Load += new System.EventHandler(this.MailNotifier_Load);
98 this.ResumeLayout(false);
105 private System.IO.Ports.SerialPort serSerialPort;
106 private System.Windows.Forms.ComboBox cmbComPort;
107 private System.Windows.Forms.Label lblComPort;
108 private System.Windows.Forms.Button btnMinimize;
109 private System.Windows.Forms.Button btnExit;
110 private System.Windows.Forms.NotifyIcon nicoNotifyIcon;