180 lines
6.7 KiB
C#
180 lines
6.7 KiB
C#
namespace EgwControlCenter
|
|
{
|
|
partial class ControlCenter
|
|
{
|
|
/// <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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlCenter));
|
|
label1 = new Label();
|
|
trayMenu = new ContextMenuStrip(components);
|
|
notifyIcon1 = new NotifyIcon(components);
|
|
btnSetup = new Button();
|
|
btnUpdate = new Button();
|
|
lblOut = new Label();
|
|
timerCheck = new System.Windows.Forms.Timer(components);
|
|
statusStrip1 = new StatusStrip();
|
|
tsLabelVers = new ToolStripStatusLabel();
|
|
tsLabelOut = new ToolStripStatusLabel();
|
|
dgView = new DataGridView();
|
|
statusStrip1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dgView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Font = new Font("Roboto", 16F, FontStyle.Regular, GraphicsUnit.Point, 0);
|
|
label1.Location = new Point(100, 9);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(283, 27);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "EgalWare AppControlCenter";
|
|
//
|
|
// trayMenu
|
|
//
|
|
trayMenu.Name = "trayMenu";
|
|
trayMenu.Size = new Size(61, 4);
|
|
trayMenu.ItemClicked += trayMenu_ItemClicked;
|
|
//
|
|
// notifyIcon1
|
|
//
|
|
notifyIcon1.ContextMenuStrip = trayMenu;
|
|
notifyIcon1.Icon = (Icon)resources.GetObject("notifyIcon1.Icon");
|
|
notifyIcon1.Text = "notifyIcon1";
|
|
notifyIcon1.Visible = true;
|
|
notifyIcon1.DoubleClick += notifyIcon1_DoubleClick;
|
|
//
|
|
// btnSetup
|
|
//
|
|
btnSetup.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
btnSetup.Location = new Point(446, 13);
|
|
btnSetup.Name = "btnSetup";
|
|
btnSetup.Size = new Size(27, 23);
|
|
btnSetup.TabIndex = 3;
|
|
btnSetup.Text = "...";
|
|
btnSetup.UseVisualStyleBackColor = true;
|
|
btnSetup.Click += btnSetup_Click;
|
|
//
|
|
// btnUpdate
|
|
//
|
|
btnUpdate.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
btnUpdate.Location = new Point(375, 223);
|
|
btnUpdate.Name = "btnUpdate";
|
|
btnUpdate.Size = new Size(98, 23);
|
|
btnUpdate.TabIndex = 4;
|
|
btnUpdate.Text = "Check Now";
|
|
btnUpdate.UseVisualStyleBackColor = true;
|
|
btnUpdate.Click += btnUpdate_Click;
|
|
//
|
|
// lblOut
|
|
//
|
|
lblOut.AutoSize = true;
|
|
lblOut.Location = new Point(44, 117);
|
|
lblOut.Name = "lblOut";
|
|
lblOut.Size = new Size(12, 15);
|
|
lblOut.TabIndex = 5;
|
|
lblOut.Text = "-";
|
|
//
|
|
// timerCheck
|
|
//
|
|
timerCheck.Interval = 1000;
|
|
timerCheck.Tick += timerCheck_Tick;
|
|
//
|
|
// statusStrip1
|
|
//
|
|
statusStrip1.Items.AddRange(new ToolStripItem[] { tsLabelVers, tsLabelOut });
|
|
statusStrip1.Location = new Point(0, 249);
|
|
statusStrip1.Name = "statusStrip1";
|
|
statusStrip1.Size = new Size(482, 22);
|
|
statusStrip1.TabIndex = 6;
|
|
statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// tsLabelVers
|
|
//
|
|
tsLabelVers.Name = "tsLabelVers";
|
|
tsLabelVers.Size = new Size(49, 17);
|
|
tsLabelVers.Text = "v.0.0.0.0";
|
|
tsLabelVers.TextImageRelation = TextImageRelation.Overlay;
|
|
//
|
|
// tsLabelOut
|
|
//
|
|
tsLabelOut.Name = "tsLabelOut";
|
|
tsLabelOut.Size = new Size(16, 17);
|
|
tsLabelOut.Text = "...";
|
|
//
|
|
// dgView
|
|
//
|
|
dgView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
dgView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dgView.Location = new Point(9, 42);
|
|
dgView.Name = "dgView";
|
|
dgView.Size = new Size(461, 175);
|
|
dgView.TabIndex = 7;
|
|
//
|
|
// ControlCenter
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(482, 271);
|
|
Controls.Add(dgView);
|
|
Controls.Add(statusStrip1);
|
|
Controls.Add(lblOut);
|
|
Controls.Add(btnUpdate);
|
|
Controls.Add(btnSetup);
|
|
Controls.Add(label1);
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|
MaximizeBox = false;
|
|
Name = "ControlCenter";
|
|
Text = "Egalware AppControlCenter";
|
|
FormClosing += ControlCenter_FormClosing;
|
|
Load += ControlCenter_Load;
|
|
Shown += ControlCenter_Shown;
|
|
Resize += ControlCenter_Resize;
|
|
statusStrip1.ResumeLayout(false);
|
|
statusStrip1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)dgView).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private ContextMenuStrip trayMenu;
|
|
private NotifyIcon notifyIcon1;
|
|
private Button btnSetup;
|
|
private Button btnUpdate;
|
|
private Label lblOut;
|
|
private System.Windows.Forms.Timer timerCheck;
|
|
private StatusStrip statusStrip1;
|
|
private ToolStripStatusLabel tsLabelVers;
|
|
private DataGridView dgView;
|
|
private ToolStripStatusLabel tsLabelOut;
|
|
}
|
|
}
|