Add the Workspace panel.

This commit is contained in:
Alkaline Thunder 2018-12-28 00:21:15 -05:00
parent 44f8184edc
commit 8477cf5e45

View file

@ -32,6 +32,7 @@
this.DesktopPanel = new System.Windows.Forms.Panel(); this.DesktopPanel = new System.Windows.Forms.Panel();
this.CurrentTime = new System.Windows.Forms.Label(); this.CurrentTime = new System.Windows.Forms.Label();
this.UpdateTimer = new System.Windows.Forms.Timer(this.components); this.UpdateTimer = new System.Windows.Forms.Timer(this.components);
this.Workspace = new System.Windows.Forms.Panel();
this.DesktopPanel.SuspendLayout(); this.DesktopPanel.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
@ -63,12 +64,22 @@
this.UpdateTimer.Interval = 50; this.UpdateTimer.Interval = 50;
this.UpdateTimer.Tick += new System.EventHandler(this.UpdateTimer_Tick); 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 // Desktop
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black; this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(800, 450); this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.Workspace);
this.Controls.Add(this.DesktopPanel); this.Controls.Add(this.DesktopPanel);
this.ForeColor = System.Drawing.Color.White; this.ForeColor = System.Drawing.Color.White;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
@ -88,6 +99,7 @@
private System.Windows.Forms.Panel DesktopPanel; private System.Windows.Forms.Panel DesktopPanel;
private System.Windows.Forms.Label CurrentTime; private System.Windows.Forms.Label CurrentTime;
private System.Windows.Forms.Timer UpdateTimer; private System.Windows.Forms.Timer UpdateTimer;
private System.Windows.Forms.Panel Workspace;
} }
} }