104 lines
4.5 KiB
C#
104 lines
4.5 KiB
C#
namespace Tutorial
|
|
{
|
|
partial class Dashboard
|
|
{
|
|
/// <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();
|
|
this.lblStatus = new System.Windows.Forms.Label();
|
|
this.picBoxStatus = new System.Windows.Forms.PictureBox();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.picBoxStatus)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblStatus
|
|
//
|
|
this.lblStatus.AutoSize = true;
|
|
this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lblStatus.ForeColor = System.Drawing.Color.White;
|
|
this.lblStatus.Location = new System.Drawing.Point(48, 16);
|
|
this.lblStatus.Name = "lblStatus";
|
|
this.lblStatus.Size = new System.Drawing.Size(70, 20);
|
|
this.lblStatus.TabIndex = 2;
|
|
this.lblStatus.Text = "{server}";
|
|
//
|
|
// picBoxStatus
|
|
//
|
|
this.picBoxStatus.Image = global::Tutorial.Properties.Resources.icons8_offline_30;
|
|
this.picBoxStatus.Location = new System.Drawing.Point(12, 12);
|
|
this.picBoxStatus.Name = "picBoxStatus";
|
|
this.picBoxStatus.Size = new System.Drawing.Size(30, 30);
|
|
this.picBoxStatus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
|
this.picBoxStatus.TabIndex = 1;
|
|
this.picBoxStatus.TabStop = false;
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Image = global::Tutorial.Properties.Resources.photo_2022_01_04_20_22_24;
|
|
this.pictureBox1.Location = new System.Drawing.Point(82, 70);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(621, 329);
|
|
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
|
this.pictureBox1.TabIndex = 0;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Enabled = true;
|
|
this.timer1.Interval = 1000;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// Dashboard
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(154)))), ((int)(((byte)(205)))));
|
|
this.ClientSize = new System.Drawing.Size(803, 484);
|
|
this.Controls.Add(this.lblStatus);
|
|
this.Controls.Add(this.picBoxStatus);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "Dashboard";
|
|
this.Text = "Dashboard";
|
|
this.Load += new System.EventHandler(this.Dashboard_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.picBoxStatus)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.PictureBox picBoxStatus;
|
|
private System.Windows.Forms.Label lblStatus;
|
|
private System.Windows.Forms.Timer timer1;
|
|
}
|
|
} |