aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlkaline Thunder <[email protected]>2018-12-28 00:21:15 -0500
committerAlkaline Thunder <[email protected]>2018-12-28 00:21:15 -0500
commit8477cf5e4539b26e6701b9cbae7df2a62438f511 (patch)
treed6e1a4f2241dc6dfb80b5a49bdf6d459575e70cc
parent44f8184edc6c78de1358ff2e64b9c0e087df0573 (diff)
downloadshiftos-challenge-8477cf5e4539b26e6701b9cbae7df2a62438f511.tar.gz
shiftos-challenge-8477cf5e4539b26e6701b9cbae7df2a62438f511.tar.bz2
shiftos-challenge-8477cf5e4539b26e6701b9cbae7df2a62438f511.zip
Add the Workspace panel.
-rw-r--r--ShiftOS/ShiftOS/Desktop.Designer.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/ShiftOS/ShiftOS/Desktop.Designer.cs b/ShiftOS/ShiftOS/Desktop.Designer.cs
index b1ead61..12be50a 100644
--- a/ShiftOS/ShiftOS/Desktop.Designer.cs
+++ b/ShiftOS/ShiftOS/Desktop.Designer.cs
@@ -32,6 +32,7 @@
this.DesktopPanel = new System.Windows.Forms.Panel();
this.CurrentTime = new System.Windows.Forms.Label();
this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
+ this.Workspace = new System.Windows.Forms.Panel();
this.DesktopPanel.SuspendLayout();
this.SuspendLayout();
//
@@ -63,12 +64,22 @@
this.UpdateTimer.Interval = 50;
this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick);
//
+ // Workspace
+ //
+ this.Workspace.BackColor = System.Drawing.Color.Transparent;
+ this.Workspace.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.Workspace.Location = new System.Drawing.Point(0, 24);
+ this.Workspace.Name = "Workspace";
+ this.Workspace.Size = new System.Drawing.Size(800, 426);
+ this.Workspace.TabIndex = 1;
+ //
// Desktop
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.Workspace);
this.Controls.Add(this.DesktopPanel);
this.ForeColor = System.Drawing.Color.White;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
@@ -88,6 +99,7 @@
private System.Windows.Forms.Panel DesktopPanel;
private System.Windows.Forms.Label CurrentTime;
private System.Windows.Forms.Timer UpdateTimer;
+ private System.Windows.Forms.Panel Workspace;
}
}