Files
mapo-iob-man/IOB-MAN/BlazorForm.Designer.cs
2025-11-27 15:13:27 +01:00

85 lines
3.0 KiB
C#

namespace IOB_MAN
{
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();
timerUI = new System.Windows.Forms.Timer(components);
timerTask = new System.Windows.Forms.Timer(components);
timerMemCheck = 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(1184, 501);
blazorWebView1.StartPath = "/";
blazorWebView1.TabIndex = 0;
blazorWebView1.Text = "blazorWebView1";
//
// timerUI
//
timerUI.Interval = 1000;
timerUI.Tick += timerUI_Tick;
//
// timerTask
//
timerTask.Interval = 30000;
timerTask.Tick += timerTask_Tick;
//
// timerMemCheck
//
timerMemCheck.Interval = 60000;
timerMemCheck.Tick += timerMemCheck_Tick;
//
// BlazorForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1184, 501);
Controls.Add(blazorWebView1);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "BlazorForm";
Text = "IOB-MAN";
FormClosing += BlazorForm_FormClosing;
Load += BlazorForm_Load;
ResumeLayout(false);
}
#endregion
private Microsoft.AspNetCore.Components.WebView.WindowsForms.BlazorWebView blazorWebView1;
private System.Windows.Forms.Timer timerUI;
private System.Windows.Forms.Timer timerTask;
private System.Windows.Forms.Timer timerMemCheck;
}
}