aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs
diff options
context:
space:
mode:
authorMichaelTheShifter <[email protected]>2016-06-25 08:10:03 -0400
committerMichaelTheShifter <[email protected]>2016-06-25 08:10:03 -0400
commit84f689b91a73e512b035df40bbcf556b008a3b81 (patch)
treeda1020b2b5866c7ce300ac7b9c97112fe80fa1b3 /source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs
parent6707e2076a63dafab686fd533c95fb8ceb6c23fa (diff)
downloadshiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.tar.gz
shiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.tar.bz2
shiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.zip
Sort source code into folders.
It feels better to know what's responsible for what... Plus I removed some un-needed C# stuff.
Diffstat (limited to 'source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs')
-rw-r--r--source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs84
1 files changed, 84 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs b/source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs
new file mode 100644
index 0000000..31608d4
--- /dev/null
+++ b/source/WindowsFormsApplication1/Controls/NetModuleStatus.Designer.cs
@@ -0,0 +1,84 @@
+namespace ShiftOS
+{
+ partial class NetModuleStatus
+ {
+ /// <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.lbinfo = new System.Windows.Forms.Label();
+ this.pghealth = new ShiftOS.ProgressBarEX();
+ this.SuspendLayout();
+ //
+ // lbinfo
+ //
+ this.lbinfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbinfo.Location = new System.Drawing.Point(4, 4);
+ this.lbinfo.Name = "lbinfo";
+ this.lbinfo.Size = new System.Drawing.Size(102, 22);
+ this.lbinfo.TabIndex = 1;
+ this.lbinfo.Text = "label1";
+ //
+ // pghealth
+ //
+ this.pghealth.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.pghealth.BackColor = System.Drawing.Color.Black;
+ this.pghealth.BlockSeparation = 3;
+ this.pghealth.BlockWidth = 5;
+ this.pghealth.Color = System.Drawing.Color.Gray;
+ this.pghealth.ForeColor = System.Drawing.Color.White;
+ this.pghealth.Location = new System.Drawing.Point(112, 4);
+ this.pghealth.MaxValue = 100;
+ this.pghealth.MinValue = 0;
+ this.pghealth.Name = "pghealth";
+ this.pghealth.Orientation = ShiftOS.ProgressBarEX.ProgressBarOrientation.Horizontal;
+ this.pghealth.ShowValue = true;
+ this.pghealth.Size = new System.Drawing.Size(227, 22);
+ this.pghealth.Step = 10;
+ this.pghealth.Style = ShiftOS.ProgressBarEX.ProgressBarExStyle.Continuous;
+ this.pghealth.TabIndex = 0;
+ this.pghealth.Value = 0;
+ //
+ // NetModuleStatus
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.lbinfo);
+ this.Controls.Add(this.pghealth);
+ this.Name = "NetModuleStatus";
+ this.Size = new System.Drawing.Size(352, 26);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private ProgressBarEX pghealth;
+ private System.Windows.Forms.Label lbinfo;
+ }
+}