96 lines
4.2 KiB
C#
96 lines
4.2 KiB
C#
|
namespace AppServerMobile
|
|||
|
{
|
|||
|
partial class MainForm
|
|||
|
{
|
|||
|
/// <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(MainForm));
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(106, 51);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(193, 13);
|
|||
|
this.label2.TabIndex = 3;
|
|||
|
this.label2.Text = "Press \"minimize\" to hide this application";
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.label1.ForeColor = System.Drawing.Color.Red;
|
|||
|
this.label1.Location = new System.Drawing.Point(87, 20);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(232, 20);
|
|||
|
this.label1.TabIndex = 2;
|
|||
|
this.label1.Text = "Please do not close this window";
|
|||
|
//
|
|||
|
// notifyIcon1
|
|||
|
//
|
|||
|
this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
|
|||
|
this.notifyIcon1.BalloonTipText = "AppServer Mobile";
|
|||
|
this.notifyIcon1.BalloonTipTitle = "AppServer Mobile";
|
|||
|
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
|
|||
|
this.notifyIcon1.Text = "AppServer Mobile";
|
|||
|
this.notifyIcon1.Visible = true;
|
|||
|
this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
|
|||
|
//
|
|||
|
// MainForm
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(421, 79);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.Name = "MainForm";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "Application Server Mobile";
|
|||
|
this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
|
|||
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|||
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|||
|
this.Resize += new System.EventHandler(this.MainForm_Resize);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.NotifyIcon notifyIcon1;
|
|||
|
}
|
|||
|
}
|