view ServerMonitor/Controls/DiskSpaceCheckControl.Designer.cs @ 27:e59ec1585616

Fix bad commit intending to change default frequency that actually changed default severity.
author Brad Greco <brad@bgreco.net>
date Sun, 02 Jun 2019 17:51:30 -0400
parents 052aa62cb42a
children
line wrap: on
line source

namespace ServerMonitorApp
{
    partial class DiskSpaceCheckControl
    {
        /// <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.FreeSpacePanel = new System.Windows.Forms.Panel();
            this.FreeSpaceUnitsComboBox = new System.Windows.Forms.ComboBox();
            this.FreeSpaceLabel = new System.Windows.Forms.Label();
            this.FreeSpaceTextBox = new System.Windows.Forms.TextBox();
            this.DeviceLabel = new System.Windows.Forms.Label();
            this.DeviceTextBox = new System.Windows.Forms.TextBox();
            this.CheckGroupBox.SuspendLayout();
            this.FreeSpacePanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // CheckGroupBox
            // 
            this.CheckGroupBox.Controls.Add(this.FreeSpacePanel);
            this.CheckGroupBox.Controls.Add(this.DeviceLabel);
            this.CheckGroupBox.Controls.Add(this.DeviceTextBox);
            this.CheckGroupBox.Size = new System.Drawing.Size(526, 87);
            this.CheckGroupBox.Text = "null";
            // 
            // FreeSpacePanel
            // 
            this.FreeSpacePanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.FreeSpacePanel.Controls.Add(this.FreeSpaceUnitsComboBox);
            this.FreeSpacePanel.Controls.Add(this.FreeSpaceLabel);
            this.FreeSpacePanel.Controls.Add(this.FreeSpaceTextBox);
            this.FreeSpacePanel.Location = new System.Drawing.Point(9, 48);
            this.FreeSpacePanel.Name = "FreeSpacePanel";
            this.FreeSpacePanel.Size = new System.Drawing.Size(511, 28);
            this.FreeSpacePanel.TabIndex = 21;
            // 
            // FreeSpaceUnitsComboBox
            // 
            this.FreeSpaceUnitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.FreeSpaceUnitsComboBox.FormattingEnabled = true;
            this.FreeSpaceUnitsComboBox.Items.AddRange(new object[] {
            "MB",
            "GB",
            "percent"});
            this.FreeSpaceUnitsComboBox.Location = new System.Drawing.Point(188, 4);
            this.FreeSpaceUnitsComboBox.Name = "FreeSpaceUnitsComboBox";
            this.FreeSpaceUnitsComboBox.Size = new System.Drawing.Size(64, 21);
            this.FreeSpaceUnitsComboBox.TabIndex = 23;
            // 
            // FreeSpaceLabel
            // 
            this.FreeSpaceLabel.AutoSize = true;
            this.FreeSpaceLabel.Location = new System.Drawing.Point(-3, 7);
            this.FreeSpaceLabel.Name = "FreeSpaceLabel";
            this.FreeSpaceLabel.Size = new System.Drawing.Size(110, 13);
            this.FreeSpaceLabel.TabIndex = 22;
            this.FreeSpaceLabel.Text = "Free &space is at least:";
            // 
            // FreeSpaceTextBox
            // 
            this.FreeSpaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.FreeSpaceTextBox.Location = new System.Drawing.Point(113, 4);
            this.FreeSpaceTextBox.Name = "FreeSpaceTextBox";
            this.FreeSpaceTextBox.Size = new System.Drawing.Size(69, 20);
            this.FreeSpaceTextBox.TabIndex = 7;
            // 
            // DeviceLabel
            // 
            this.DeviceLabel.AutoSize = true;
            this.DeviceLabel.Location = new System.Drawing.Point(6, 25);
            this.DeviceLabel.Name = "DeviceLabel";
            this.DeviceLabel.Size = new System.Drawing.Size(69, 13);
            this.DeviceLabel.TabIndex = 18;
            this.DeviceLabel.Text = "&File / device:";
            // 
            // DeviceTextBox
            // 
            this.DeviceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.DeviceTextBox.Location = new System.Drawing.Point(77, 22);
            this.DeviceTextBox.Name = "DeviceTextBox";
            this.DeviceTextBox.Size = new System.Drawing.Size(443, 20);
            this.DeviceTextBox.TabIndex = 17;
            this.DeviceTextBox.Text = "/";
            // 
            // DiskSpaceCheckControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "DiskSpaceCheckControl";
            this.Size = new System.Drawing.Size(526, 87);
            this.Load += new System.EventHandler(this.DiskSpaceCheckControl_Load);
            this.CheckGroupBox.ResumeLayout(false);
            this.CheckGroupBox.PerformLayout();
            this.FreeSpacePanel.ResumeLayout(false);
            this.FreeSpacePanel.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel FreeSpacePanel;
        private System.Windows.Forms.TextBox FreeSpaceTextBox;
        private System.Windows.Forms.Label DeviceLabel;
        private System.Windows.Forms.TextBox DeviceTextBox;
        private System.Windows.Forms.ComboBox FreeSpaceUnitsComboBox;
        private System.Windows.Forms.Label FreeSpaceLabel;
    }
}