view ServerMonitor/Controls/ServerSummaryControl.Designer.cs @ 22:48044d9ac000

Change default check interval from 5 seconds to 5 minutes.
author Brad Greco <brad@bgreco.net>
date Thu, 30 May 2019 21:40:02 -0400
parents 832a07de0f90
children
line wrap: on
line source

namespace ServerMonitorApp
{
    partial class ServerSummaryControl
    {
        /// <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 Component 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.ServerNameLabel = new System.Windows.Forms.Label();
            this.ServerPictureBox = new System.Windows.Forms.PictureBox();
            this.StatusPictureBox = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.StatusPictureBox)).BeginInit();
            this.SuspendLayout();
            // 
            // ServerNameLabel
            // 
            this.ServerNameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.ServerNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ServerNameLabel.Location = new System.Drawing.Point(0, 127);
            this.ServerNameLabel.Name = "ServerNameLabel";
            this.ServerNameLabel.Size = new System.Drawing.Size(192, 36);
            this.ServerNameLabel.TabIndex = 1;
            this.ServerNameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // ServerPictureBox
            // 
            this.ServerPictureBox.Image = global::ServerMonitorApp.Properties.Resources.server;
            this.ServerPictureBox.Location = new System.Drawing.Point(0, 0);
            this.ServerPictureBox.Name = "ServerPictureBox";
            this.ServerPictureBox.Size = new System.Drawing.Size(192, 124);
            this.ServerPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.ServerPictureBox.TabIndex = 0;
            this.ServerPictureBox.TabStop = false;
            // 
            // StatusPictureBox
            // 
            this.StatusPictureBox.BackColor = System.Drawing.Color.Transparent;
            this.StatusPictureBox.Image = global::ServerMonitorApp.Properties.Resources.pass;
            this.StatusPictureBox.Location = new System.Drawing.Point(104, 92);
            this.StatusPictureBox.Name = "StatusPictureBox";
            this.StatusPictureBox.Size = new System.Drawing.Size(32, 32);
            this.StatusPictureBox.TabIndex = 2;
            this.StatusPictureBox.TabStop = false;
            this.StatusPictureBox.Click += new System.EventHandler(this.Control_Click);
            // 
            // ServerSummaryControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.Controls.Add(this.StatusPictureBox);
            this.Controls.Add(this.ServerNameLabel);
            this.Controls.Add(this.ServerPictureBox);
            this.Name = "ServerSummaryControl";
            this.Size = new System.Drawing.Size(192, 192);
            ((System.ComponentModel.ISupportInitialize)(this.ServerPictureBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.StatusPictureBox)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.PictureBox ServerPictureBox;
        private System.Windows.Forms.Label ServerNameLabel;
        private System.Windows.Forms.PictureBox StatusPictureBox;
    }
}