Files
limanapp/EgwControlCenter/ControlCenter.Designer.cs
T
2024-09-18 18:51:41 +02:00

135 lines
4.6 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();
label2 = new Label();
trayMenu = new ContextMenuStrip(components);
notifyIcon1 = new NotifyIcon(components);
btnSetup = new Button();
btnUpdate = new Button();
lblOut = new Label();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Roboto", 24F, FontStyle.Regular, GraphicsUnit.Point, 0);
label1.Location = new Point(193, 9);
label1.Name = "label1";
label1.Size = new Size(429, 38);
label1.TabIndex = 0;
label1.Text = "EgalWare App Control Center";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(53, 83);
label2.Name = "label2";
label2.Size = new Size(152, 15);
label2.TabIndex = 1;
label2.Text = "Elenco App (list? webview?)";
//
// 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.Location = new Point(761, 23);
btnSetup.Name = "btnSetup";
btnSetup.Size = new Size(27, 23);
btnSetup.TabIndex = 3;
btnSetup.Text = "...";
btnSetup.UseVisualStyleBackColor = true;
btnSetup.Click += btnSetup_Click;
//
// btnUpdate
//
btnUpdate.Location = new Point(577, 77);
btnUpdate.Name = "btnUpdate";
btnUpdate.Size = new Size(75, 23);
btnUpdate.TabIndex = 4;
btnUpdate.Text = "Update";
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 = "-";
//
// ControlCenter
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(lblOut);
Controls.Add(btnUpdate);
Controls.Add(btnSetup);
Controls.Add(label2);
Controls.Add(label1);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "ControlCenter";
Text = "Egalware Control Center";
FormClosing += ControlCenter_FormClosing;
Shown += ControlCenter_Shown;
Resize += ControlCenter_Resize;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private ContextMenuStrip trayMenu;
private NotifyIcon notifyIcon1;
private Button btnSetup;
private Button btnUpdate;
private Label lblOut;
}
}