1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
namespace Project_Ports
{
partial class Desktop
{
/// <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 Windows Form 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.components = new System.ComponentModel.Container();
this.appMenu = new System.Windows.Forms.MenuStrip();
this.menuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.programsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.terminalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.testWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.shutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ltime = new System.Windows.Forms.Label();
this.dclock = new System.Windows.Forms.Timer(this.components);
this.chatterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.appMenu.SuspendLayout();
this.SuspendLayout();
//
// appMenu
//
this.appMenu.BackColor = System.Drawing.Color.Silver;
this.appMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuToolStripMenuItem});
this.appMenu.Location = new System.Drawing.Point(0, 0);
this.appMenu.Name = "appMenu";
this.appMenu.Size = new System.Drawing.Size(800, 24);
this.appMenu.TabIndex = 0;
this.appMenu.Text = "menuStrip1";
//
// menuToolStripMenuItem
//
this.menuToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.programsToolStripMenuItem,
this.settingsToolStripMenuItem,
this.toolStripSeparator1,
this.shutdownToolStripMenuItem});
this.menuToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.menuToolStripMenuItem.ForeColor = System.Drawing.Color.Black;
this.menuToolStripMenuItem.Name = "menuToolStripMenuItem";
this.menuToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.menuToolStripMenuItem.Text = "Menu";
//
// programsToolStripMenuItem
//
this.programsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.terminalToolStripMenuItem,
this.testWindowToolStripMenuItem,
this.chatterToolStripMenuItem});
this.programsToolStripMenuItem.Name = "programsToolStripMenuItem";
this.programsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.programsToolStripMenuItem.Text = "Programs";
//
// terminalToolStripMenuItem
//
this.terminalToolStripMenuItem.Name = "terminalToolStripMenuItem";
this.terminalToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.terminalToolStripMenuItem.Text = "Terminal";
this.terminalToolStripMenuItem.Click += new System.EventHandler(this.terminalToolStripMenuItem_Click);
//
// testWindowToolStripMenuItem
//
this.testWindowToolStripMenuItem.Name = "testWindowToolStripMenuItem";
this.testWindowToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.testWindowToolStripMenuItem.Text = "TestWindow";
this.testWindowToolStripMenuItem.Click += new System.EventHandler(this.testWindowToolStripMenuItem_Click);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.settingsToolStripMenuItem.Text = "Settings";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
//
// shutdownToolStripMenuItem
//
this.shutdownToolStripMenuItem.Name = "shutdownToolStripMenuItem";
this.shutdownToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.shutdownToolStripMenuItem.Text = "Shutdown";
this.shutdownToolStripMenuItem.Click += new System.EventHandler(this.shutdownToolStripMenuItem_Click);
//
// ltime
//
this.ltime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ltime.AutoSize = true;
this.ltime.BackColor = System.Drawing.Color.Silver;
this.ltime.ForeColor = System.Drawing.Color.Black;
this.ltime.Location = new System.Drawing.Point(742, 6);
this.ltime.Name = "ltime";
this.ltime.Size = new System.Drawing.Size(53, 13);
this.ltime.TabIndex = 1;
this.ltime.Text = "00:00 AM";
this.ltime.Click += new System.EventHandler(this.label1_Click);
//
// dclock
//
this.dclock.Tick += new System.EventHandler(this.dclock_Tick);
//
// chatterToolStripMenuItem
//
this.chatterToolStripMenuItem.Name = "chatterToolStripMenuItem";
this.chatterToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.chatterToolStripMenuItem.Text = "Chatter";
this.chatterToolStripMenuItem.Click += new System.EventHandler(this.chatterToolStripMenuItem_Click);
//
// Desktop
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.WindowFrame;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.ltime);
this.Controls.Add(this.appMenu);
this.ForeColor = System.Drawing.Color.White;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MainMenuStrip = this.appMenu;
this.Name = "Desktop";
this.Text = "Desktop";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.Desktop_Load);
this.appMenu.ResumeLayout(false);
this.appMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip appMenu;
private System.Windows.Forms.ToolStripMenuItem menuToolStripMenuItem;
private System.Windows.Forms.Label ltime;
private System.Windows.Forms.ToolStripMenuItem programsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem shutdownToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem terminalToolStripMenuItem;
private System.Windows.Forms.Timer dclock;
private System.Windows.Forms.ToolStripMenuItem testWindowToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem chatterToolStripMenuItem;
}
}
|