Mercurial > servermonitor
diff ServerMonitor/Controls/FileCheckControl.Designer.cs @ 3:96f0b028176d
File check
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Fri, 11 Jan 2019 22:34:18 -0500 |
parents | |
children | 052aa62cb42a |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ServerMonitor/Controls/FileCheckControl.Designer.cs Fri Jan 11 22:34:18 2019 -0500 @@ -0,0 +1,223 @@ +namespace ServerMonitorApp +{ + partial class FileCheckControl + { + /// <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.FileSizePanel = new System.Windows.Forms.Panel(); + this.FileSizeUnitsComboBox = new ServerMonitorApp.SizeUnitsComboBox(); + this.FileSizeComparisonComboBox = new System.Windows.Forms.ComboBox(); + this.FileSizeCheckBox = new System.Windows.Forms.CheckBox(); + this.FileSizeTextBox = new System.Windows.Forms.TextBox(); + this.FileLabel = new System.Windows.Forms.Label(); + this.FileTextBox = new System.Windows.Forms.TextBox(); + this.FileModifiedPanel = new System.Windows.Forms.Panel(); + this.DateModifiedComparisonComboBox = new System.Windows.Forms.ComboBox(); + this.DateModifiedCheckBox = new System.Windows.Forms.CheckBox(); + this.DateModifiedTextBox = new System.Windows.Forms.TextBox(); + this.DateModifiedUnitsComboBox = new ServerMonitorApp.TimeUnitsComboBox(); + this.CheckGroupBox.SuspendLayout(); + this.FileSizePanel.SuspendLayout(); + this.FileModifiedPanel.SuspendLayout(); + this.SuspendLayout(); + // + // CheckGroupBox + // + this.CheckGroupBox.Controls.Add(this.FileModifiedPanel); + this.CheckGroupBox.Controls.Add(this.FileSizePanel); + this.CheckGroupBox.Controls.Add(this.FileLabel); + this.CheckGroupBox.Controls.Add(this.FileTextBox); + this.CheckGroupBox.Size = new System.Drawing.Size(526, 114); + this.CheckGroupBox.Text = "null"; + // + // FileSizePanel + // + this.FileSizePanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.FileSizePanel.Controls.Add(this.FileSizeUnitsComboBox); + this.FileSizePanel.Controls.Add(this.FileSizeComparisonComboBox); + this.FileSizePanel.Controls.Add(this.FileSizeCheckBox); + this.FileSizePanel.Controls.Add(this.FileSizeTextBox); + this.FileSizePanel.Location = new System.Drawing.Point(9, 48); + this.FileSizePanel.Name = "FileSizePanel"; + this.FileSizePanel.Size = new System.Drawing.Size(511, 28); + this.FileSizePanel.TabIndex = 21; + // + // FileSizeUnitsComboBox + // + this.FileSizeUnitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.FileSizeUnitsComboBox.FormattingEnabled = true; + this.FileSizeUnitsComboBox.Items.AddRange(new object[] { + "B", + "MB", + "KB", + "GB"}); + this.FileSizeUnitsComboBox.Location = new System.Drawing.Point(227, 4); + this.FileSizeUnitsComboBox.Name = "FileSizeUnitsComboBox"; + this.FileSizeUnitsComboBox.Size = new System.Drawing.Size(43, 21); + this.FileSizeUnitsComboBox.TabIndex = 26; + // + // FileSizeComparisonComboBox + // + this.FileSizeComparisonComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.FileSizeComparisonComboBox.FormattingEnabled = true; + this.FileSizeComparisonComboBox.Items.AddRange(new object[] { + "less than", + "greater than"}); + this.FileSizeComparisonComboBox.Location = new System.Drawing.Point(63, 4); + this.FileSizeComparisonComboBox.Name = "FileSizeComparisonComboBox"; + this.FileSizeComparisonComboBox.Size = new System.Drawing.Size(83, 21); + this.FileSizeComparisonComboBox.TabIndex = 25; + // + // FileSizeCheckBox + // + this.FileSizeCheckBox.AutoSize = true; + this.FileSizeCheckBox.Location = new System.Drawing.Point(0, 6); + this.FileSizeCheckBox.Name = "FileSizeCheckBox"; + this.FileSizeCheckBox.Size = new System.Drawing.Size(63, 17); + this.FileSizeCheckBox.TabIndex = 24; + this.FileSizeCheckBox.Text = "File size"; + this.FileSizeCheckBox.UseVisualStyleBackColor = true; + // + // FileSizeTextBox + // + this.FileSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.FileSizeTextBox.Location = new System.Drawing.Point(152, 4); + this.FileSizeTextBox.Name = "FileSizeTextBox"; + this.FileSizeTextBox.Size = new System.Drawing.Size(69, 20); + this.FileSizeTextBox.TabIndex = 7; + // + // FileLabel + // + this.FileLabel.AutoSize = true; + this.FileLabel.Location = new System.Drawing.Point(6, 25); + this.FileLabel.Name = "FileLabel"; + this.FileLabel.Size = new System.Drawing.Size(26, 13); + this.FileLabel.TabIndex = 18; + this.FileLabel.Text = "File:"; + // + // FileTextBox + // + this.FileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.FileTextBox.Location = new System.Drawing.Point(38, 22); + this.FileTextBox.Name = "FileTextBox"; + this.FileTextBox.Size = new System.Drawing.Size(482, 20); + this.FileTextBox.TabIndex = 17; + this.FileTextBox.Text = "/"; + // + // FileModifiedPanel + // + this.FileModifiedPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.FileModifiedPanel.Controls.Add(this.DateModifiedUnitsComboBox); + this.FileModifiedPanel.Controls.Add(this.DateModifiedComparisonComboBox); + this.FileModifiedPanel.Controls.Add(this.DateModifiedCheckBox); + this.FileModifiedPanel.Controls.Add(this.DateModifiedTextBox); + this.FileModifiedPanel.Location = new System.Drawing.Point(9, 75); + this.FileModifiedPanel.Name = "FileModifiedPanel"; + this.FileModifiedPanel.Size = new System.Drawing.Size(511, 28); + this.FileModifiedPanel.TabIndex = 27; + // + // DateModifiedComparisonComboBox + // + this.DateModifiedComparisonComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.DateModifiedComparisonComboBox.FormattingEnabled = true; + this.DateModifiedComparisonComboBox.Items.AddRange(new object[] { + "older than", + "newer than"}); + this.DateModifiedComparisonComboBox.Location = new System.Drawing.Point(91, 4); + this.DateModifiedComparisonComboBox.Name = "DateModifiedComparisonComboBox"; + this.DateModifiedComparisonComboBox.Size = new System.Drawing.Size(82, 21); + this.DateModifiedComparisonComboBox.TabIndex = 25; + // + // DateModifiedCheckBox + // + this.DateModifiedCheckBox.AutoSize = true; + this.DateModifiedCheckBox.Location = new System.Drawing.Point(0, 6); + this.DateModifiedCheckBox.Name = "DateModifiedCheckBox"; + this.DateModifiedCheckBox.Size = new System.Drawing.Size(91, 17); + this.DateModifiedCheckBox.TabIndex = 24; + this.DateModifiedCheckBox.Text = "Date modified"; + this.DateModifiedCheckBox.UseVisualStyleBackColor = true; + // + // DateModifiedTextBox + // + this.DateModifiedTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.DateModifiedTextBox.Location = new System.Drawing.Point(179, 4); + this.DateModifiedTextBox.Name = "DateModifiedTextBox"; + this.DateModifiedTextBox.Size = new System.Drawing.Size(69, 20); + this.DateModifiedTextBox.TabIndex = 7; + // + // DateModifiedUnitsComboBox + // + this.DateModifiedUnitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.DateModifiedUnitsComboBox.FormattingEnabled = true; + this.DateModifiedUnitsComboBox.Items.AddRange(new object[] { + "minutes", + "hours", + "days"}); + this.DateModifiedUnitsComboBox.Location = new System.Drawing.Point(254, 4); + this.DateModifiedUnitsComboBox.Name = "DateModifiedUnitsComboBox"; + this.DateModifiedUnitsComboBox.Size = new System.Drawing.Size(60, 21); + this.DateModifiedUnitsComboBox.TabIndex = 26; + // + // FileCheckControl + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Name = "FileCheckControl"; + this.Size = new System.Drawing.Size(526, 114); + this.Load += new System.EventHandler(this.DiskSpaceCheckControl_Load); + this.CheckGroupBox.ResumeLayout(false); + this.CheckGroupBox.PerformLayout(); + this.FileSizePanel.ResumeLayout(false); + this.FileSizePanel.PerformLayout(); + this.FileModifiedPanel.ResumeLayout(false); + this.FileModifiedPanel.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel FileSizePanel; + private System.Windows.Forms.TextBox FileSizeTextBox; + private System.Windows.Forms.Label FileLabel; + private System.Windows.Forms.TextBox FileTextBox; + private System.Windows.Forms.CheckBox FileSizeCheckBox; + private System.Windows.Forms.ComboBox FileSizeComparisonComboBox; + private SizeUnitsComboBox FileSizeUnitsComboBox; + private System.Windows.Forms.Panel FileModifiedPanel; + private System.Windows.Forms.ComboBox DateModifiedComparisonComboBox; + private System.Windows.Forms.CheckBox DateModifiedCheckBox; + private System.Windows.Forms.TextBox DateModifiedTextBox; + private TimeUnitsComboBox DateModifiedUnitsComboBox; + } +}