view ServerMonitor/Forms/ServerSummaryForm.Designer.cs @ 0:3e1a2131f897

Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
author Brad Greco <brad@bgreco.net>
date Mon, 31 Dec 2018 18:32:14 -0500
parents
children 3142e52cbe69
line wrap: on
line source

namespace ServerMonitorApp
{
    partial class ServerSummaryForm
    {
        /// <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.ServerPanel = new System.Windows.Forms.FlowLayoutPanel();
            this.NewServerButton = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // ServerPanel
            // 
            this.ServerPanel.Location = new System.Drawing.Point(12, 12);
            this.ServerPanel.Name = "ServerPanel";
            this.ServerPanel.Size = new System.Drawing.Size(560, 308);
            this.ServerPanel.TabIndex = 0;
            // 
            // NewServerButton
            // 
            this.NewServerButton.Image = global::ServerMonitorApp.Properties.Resources.add;
            this.NewServerButton.Location = new System.Drawing.Point(12, 409);
            this.NewServerButton.Name = "NewServerButton";
            this.NewServerButton.Size = new System.Drawing.Size(96, 29);
            this.NewServerButton.TabIndex = 0;
            this.NewServerButton.Text = "New server";
            this.NewServerButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.NewServerButton.UseVisualStyleBackColor = true;
            this.NewServerButton.Click += new System.EventHandler(this.NewServerButton_Click);
            // 
            // ServerSummaryForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(800, 450);
            this.Controls.Add(this.NewServerButton);
            this.Controls.Add(this.ServerPanel);
            this.Name = "ServerSummaryForm";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.ServerSummaryForm_Load);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.FlowLayoutPanel ServerPanel;
        private System.Windows.Forms.Button NewServerButton;
    }
}