Mercurial > servermonitor
diff ServerMonitor/Controls/DiskSpaceCheckControl.Designer.cs @ 2:453ecc1ed9ea
Disk space check
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Sun, 06 Jan 2019 20:49:08 -0500 |
parents | |
children | 96f0b028176d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ServerMonitor/Controls/DiskSpaceCheckControl.Designer.cs Sun Jan 06 20:49:08 2019 -0500 @@ -0,0 +1,135 @@ +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.ResponseBodyPanel = 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.ResponseBodyPanel.SuspendLayout(); + this.SuspendLayout(); + // + // CheckGroupBox + // + this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel); + 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"; + // + // ResponseBodyPanel + // + this.ResponseBodyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.ResponseBodyPanel.Controls.Add(this.FreeSpaceUnitsComboBox); + this.ResponseBodyPanel.Controls.Add(this.FreeSpaceLabel); + this.ResponseBodyPanel.Controls.Add(this.FreeSpaceTextBox); + this.ResponseBodyPanel.Location = new System.Drawing.Point(9, 48); + this.ResponseBodyPanel.Name = "ResponseBodyPanel"; + this.ResponseBodyPanel.Size = new System.Drawing.Size(511, 28); + this.ResponseBodyPanel.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.ResponseBodyPanel.ResumeLayout(false); + this.ResponseBodyPanel.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel ResponseBodyPanel; + 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; + } +}