comparison 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
comparison
equal deleted inserted replaced
1:9e92780ebc0f 2:453ecc1ed9ea
1 namespace ServerMonitorApp
2 {
3 partial class DiskSpaceCheckControl
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Component Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.ResponseBodyPanel = new System.Windows.Forms.Panel();
32 this.FreeSpaceUnitsComboBox = new System.Windows.Forms.ComboBox();
33 this.FreeSpaceLabel = new System.Windows.Forms.Label();
34 this.FreeSpaceTextBox = new System.Windows.Forms.TextBox();
35 this.DeviceLabel = new System.Windows.Forms.Label();
36 this.DeviceTextBox = new System.Windows.Forms.TextBox();
37 this.CheckGroupBox.SuspendLayout();
38 this.ResponseBodyPanel.SuspendLayout();
39 this.SuspendLayout();
40 //
41 // CheckGroupBox
42 //
43 this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel);
44 this.CheckGroupBox.Controls.Add(this.DeviceLabel);
45 this.CheckGroupBox.Controls.Add(this.DeviceTextBox);
46 this.CheckGroupBox.Size = new System.Drawing.Size(526, 87);
47 this.CheckGroupBox.Text = "null";
48 //
49 // ResponseBodyPanel
50 //
51 this.ResponseBodyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
52 | System.Windows.Forms.AnchorStyles.Right)));
53 this.ResponseBodyPanel.Controls.Add(this.FreeSpaceUnitsComboBox);
54 this.ResponseBodyPanel.Controls.Add(this.FreeSpaceLabel);
55 this.ResponseBodyPanel.Controls.Add(this.FreeSpaceTextBox);
56 this.ResponseBodyPanel.Location = new System.Drawing.Point(9, 48);
57 this.ResponseBodyPanel.Name = "ResponseBodyPanel";
58 this.ResponseBodyPanel.Size = new System.Drawing.Size(511, 28);
59 this.ResponseBodyPanel.TabIndex = 21;
60 //
61 // FreeSpaceUnitsComboBox
62 //
63 this.FreeSpaceUnitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
64 this.FreeSpaceUnitsComboBox.FormattingEnabled = true;
65 this.FreeSpaceUnitsComboBox.Items.AddRange(new object[] {
66 "MB",
67 "GB",
68 "percent"});
69 this.FreeSpaceUnitsComboBox.Location = new System.Drawing.Point(188, 4);
70 this.FreeSpaceUnitsComboBox.Name = "FreeSpaceUnitsComboBox";
71 this.FreeSpaceUnitsComboBox.Size = new System.Drawing.Size(64, 21);
72 this.FreeSpaceUnitsComboBox.TabIndex = 23;
73 //
74 // FreeSpaceLabel
75 //
76 this.FreeSpaceLabel.AutoSize = true;
77 this.FreeSpaceLabel.Location = new System.Drawing.Point(-3, 7);
78 this.FreeSpaceLabel.Name = "FreeSpaceLabel";
79 this.FreeSpaceLabel.Size = new System.Drawing.Size(110, 13);
80 this.FreeSpaceLabel.TabIndex = 22;
81 this.FreeSpaceLabel.Text = "Free space is at least:";
82 //
83 // FreeSpaceTextBox
84 //
85 this.FreeSpaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86 | System.Windows.Forms.AnchorStyles.Right)));
87 this.FreeSpaceTextBox.Location = new System.Drawing.Point(113, 4);
88 this.FreeSpaceTextBox.Name = "FreeSpaceTextBox";
89 this.FreeSpaceTextBox.Size = new System.Drawing.Size(69, 20);
90 this.FreeSpaceTextBox.TabIndex = 7;
91 //
92 // DeviceLabel
93 //
94 this.DeviceLabel.AutoSize = true;
95 this.DeviceLabel.Location = new System.Drawing.Point(6, 25);
96 this.DeviceLabel.Name = "DeviceLabel";
97 this.DeviceLabel.Size = new System.Drawing.Size(69, 13);
98 this.DeviceLabel.TabIndex = 18;
99 this.DeviceLabel.Text = "File / device:";
100 //
101 // DeviceTextBox
102 //
103 this.DeviceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
104 | System.Windows.Forms.AnchorStyles.Right)));
105 this.DeviceTextBox.Location = new System.Drawing.Point(77, 22);
106 this.DeviceTextBox.Name = "DeviceTextBox";
107 this.DeviceTextBox.Size = new System.Drawing.Size(443, 20);
108 this.DeviceTextBox.TabIndex = 17;
109 this.DeviceTextBox.Text = "/";
110 //
111 // DiskSpaceCheckControl
112 //
113 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
114 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
115 this.Name = "DiskSpaceCheckControl";
116 this.Size = new System.Drawing.Size(526, 87);
117 this.Load += new System.EventHandler(this.DiskSpaceCheckControl_Load);
118 this.CheckGroupBox.ResumeLayout(false);
119 this.CheckGroupBox.PerformLayout();
120 this.ResponseBodyPanel.ResumeLayout(false);
121 this.ResponseBodyPanel.PerformLayout();
122 this.ResumeLayout(false);
123
124 }
125
126 #endregion
127
128 private System.Windows.Forms.Panel ResponseBodyPanel;
129 private System.Windows.Forms.TextBox FreeSpaceTextBox;
130 private System.Windows.Forms.Label DeviceLabel;
131 private System.Windows.Forms.TextBox DeviceTextBox;
132 private System.Windows.Forms.ComboBox FreeSpaceUnitsComboBox;
133 private System.Windows.Forms.Label FreeSpaceLabel;
134 }
135 }