114 lines
4.2 KiB
C#
114 lines
4.2 KiB
C#
namespace EgwControlCenter.App
|
|
{
|
|
partial class BlazorForm
|
|
{
|
|
/// <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(BlazorForm));
|
|
blazorWebView1 = new Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView();
|
|
notifyIcon1 = new NotifyIcon(components);
|
|
trayMenu = new ContextMenuStrip(components);
|
|
timerCheck = new System.Windows.Forms.Timer(components);
|
|
timerTask = new System.Windows.Forms.Timer(components);
|
|
timer1 = new System.Windows.Forms.Timer(components);
|
|
timerStats = new System.Windows.Forms.Timer(components);
|
|
SuspendLayout();
|
|
//
|
|
// blazorWebView1
|
|
//
|
|
blazorWebView1.Dock = DockStyle.Fill;
|
|
blazorWebView1.Location = new Point(0, 0);
|
|
blazorWebView1.Name = "blazorWebView1";
|
|
blazorWebView1.Size = new Size(644, 441);
|
|
blazorWebView1.StartPath = "/";
|
|
blazorWebView1.TabIndex = 0;
|
|
//
|
|
// notifyIcon1
|
|
//
|
|
notifyIcon1.ContextMenuStrip = trayMenu;
|
|
notifyIcon1.Icon = (Icon)resources.GetObject("notifyIcon1.Icon");
|
|
notifyIcon1.Text = "EgwControlCenter.App";
|
|
notifyIcon1.Visible = true;
|
|
notifyIcon1.BalloonTipClicked += NotifyIcon1_BalloonTipClicked;
|
|
notifyIcon1.DoubleClick += notifyIcon1_DoubleClick;
|
|
notifyIcon1.MouseClick += notifyIcon1_MouseClick;
|
|
//
|
|
// trayMenu
|
|
//
|
|
trayMenu.Name = "trayMenu";
|
|
trayMenu.Size = new Size(61, 4);
|
|
trayMenu.ItemClicked += trayMenu_ItemClicked;
|
|
//
|
|
// timerCheck
|
|
//
|
|
timerCheck.Interval = 1000;
|
|
timerCheck.Tick += timerCheck_Tick;
|
|
//
|
|
// timerTask
|
|
//
|
|
timerTask.Interval = 1000;
|
|
timerTask.Tick += timerTask_Tick;
|
|
//
|
|
// timer1
|
|
//
|
|
timer1.Interval = 1000;
|
|
//
|
|
// timerStats
|
|
//
|
|
timerStats.Interval = 600000;
|
|
timerStats.Tick += timerStats_Tick;
|
|
//
|
|
// BlazorForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(644, 441);
|
|
Controls.Add(blazorWebView1);
|
|
Icon = (Icon)resources.GetObject("$this.Icon");
|
|
MaximizeBox = false;
|
|
Name = "BlazorForm";
|
|
ShowInTaskbar = false;
|
|
Text = "EgalWare AppControlCenter";
|
|
FormClosing += BlazorForm_FormClosing;
|
|
Load += BlazorForm_Load;
|
|
Resize += BlazorForm_Resize;
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView blazorWebView1;
|
|
private NotifyIcon notifyIcon1;
|
|
private ContextMenuStrip trayMenu;
|
|
private System.Windows.Forms.Timer timerCheck;
|
|
private System.Windows.Forms.Timer timerTask;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.Timer timerStats;
|
|
}
|
|
}
|