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
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Command_prompt
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.program = New System.Windows.Forms.Panel
Me.outsideprogramtopbar = New System.Windows.Forms.Panel
Me.programtopbar = New System.Windows.Forms.Panel
Me.programname = New System.Windows.Forms.Label
Me.maximizebutton = New System.Windows.Forms.PictureBox
Me.minimizebutton = New System.Windows.Forms.PictureBox
Me.closebutton = New System.Windows.Forms.PictureBox
Me.TextBox1 = New System.Windows.Forms.TextBox
Me.program.SuspendLayout()
Me.outsideprogramtopbar.SuspendLayout()
Me.programtopbar.SuspendLayout()
CType(Me.maximizebutton, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.minimizebutton, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.closebutton, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'program
'
Me.program.BackColor = System.Drawing.Color.Silver
Me.program.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
Me.program.Controls.Add(Me.TextBox1)
Me.program.Controls.Add(Me.outsideprogramtopbar)
Me.program.Dock = System.Windows.Forms.DockStyle.Fill
Me.program.Location = New System.Drawing.Point(0, 0)
Me.program.Name = "program"
Me.program.Size = New System.Drawing.Size(459, 204)
Me.program.TabIndex = 4
'
'outsideprogramtopbar
'
Me.outsideprogramtopbar.Controls.Add(Me.programtopbar)
Me.outsideprogramtopbar.Dock = System.Windows.Forms.DockStyle.Top
Me.outsideprogramtopbar.Location = New System.Drawing.Point(0, 0)
Me.outsideprogramtopbar.Name = "outsideprogramtopbar"
Me.outsideprogramtopbar.Size = New System.Drawing.Size(455, 25)
Me.outsideprogramtopbar.TabIndex = 5
'
'programtopbar
'
Me.programtopbar.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.programtopbar.BackColor = System.Drawing.Color.DarkBlue
Me.programtopbar.Controls.Add(Me.maximizebutton)
Me.programtopbar.Controls.Add(Me.minimizebutton)
Me.programtopbar.Controls.Add(Me.programname)
Me.programtopbar.Controls.Add(Me.closebutton)
Me.programtopbar.Location = New System.Drawing.Point(3, 3)
Me.programtopbar.Name = "programtopbar"
Me.programtopbar.Size = New System.Drawing.Size(449, 18)
Me.programtopbar.TabIndex = 0
'
'programname
'
Me.programname.AutoSize = True
Me.programname.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.programname.ForeColor = System.Drawing.Color.White
Me.programname.Location = New System.Drawing.Point(3, 2)
Me.programname.Name = "programname"
Me.programname.Size = New System.Drawing.Size(104, 13)
Me.programname.TabIndex = 3
Me.programname.Text = "Command Prompt"
'
'maximizebutton
'
Me.maximizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.maximizebutton.Image = Global.windows_95.My.Resources.Resources.Maximize
Me.maximizebutton.Location = New System.Drawing.Point(415, 2)
Me.maximizebutton.Name = "maximizebutton"
Me.maximizebutton.Size = New System.Drawing.Size(16, 14)
Me.maximizebutton.TabIndex = 6
Me.maximizebutton.TabStop = False
'
'minimizebutton
'
Me.minimizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.minimizebutton.Image = Global.windows_95.My.Resources.Resources.minimize
Me.minimizebutton.Location = New System.Drawing.Point(399, 2)
Me.minimizebutton.Name = "minimizebutton"
Me.minimizebutton.Size = New System.Drawing.Size(16, 14)
Me.minimizebutton.TabIndex = 5
Me.minimizebutton.TabStop = False
'
'closebutton
'
Me.closebutton.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.closebutton.Image = Global.windows_95.My.Resources.Resources.close
Me.closebutton.Location = New System.Drawing.Point(432, 2)
Me.closebutton.Name = "closebutton"
Me.closebutton.Size = New System.Drawing.Size(16, 14)
Me.closebutton.TabIndex = 4
Me.closebutton.TabStop = False
'
'TextBox1
'
Me.TextBox1.BackColor = System.Drawing.Color.Black
Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.TextBox1.ForeColor = System.Drawing.Color.White
Me.TextBox1.Location = New System.Drawing.Point(0, 25)
Me.TextBox1.Multiline = True
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.ReadOnly = True
Me.TextBox1.Size = New System.Drawing.Size(455, 175)
Me.TextBox1.TabIndex = 6
'
'Command_prompt
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(459, 204)
Me.Controls.Add(Me.program)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.Name = "Command_prompt"
Me.Text = "Command_prompt"
Me.TopMost = True
Me.program.ResumeLayout(False)
Me.program.PerformLayout()
Me.outsideprogramtopbar.ResumeLayout(False)
Me.programtopbar.ResumeLayout(False)
Me.programtopbar.PerformLayout()
CType(Me.maximizebutton, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.minimizebutton, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.closebutton, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents program As System.Windows.Forms.Panel
Friend WithEvents outsideprogramtopbar As System.Windows.Forms.Panel
Friend WithEvents programtopbar As System.Windows.Forms.Panel
Friend WithEvents maximizebutton As System.Windows.Forms.PictureBox
Friend WithEvents minimizebutton As System.Windows.Forms.PictureBox
Friend WithEvents programname As System.Windows.Forms.Label
Friend WithEvents closebutton As System.Windows.Forms.PictureBox
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
End Class
|