aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/Terminal.Designer.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-04 13:12:41 +0700
committerEverythingWindows <[email protected]>2022-11-04 13:12:41 +0700
commit552304f614c30c8be8d2e5f042b39cadf3477bcf (patch)
treefe7f3f857a31a413e67b5269aefc3bd0203fffdc /ShiftOS-TheRevival/MainForms/Terminal.Designer.vb
parentcd741c3850b861c48fbb2a8e51f1189fb006b935 (diff)
downloadshiftos-therevival-old-0.2.2.tar.gz
shiftos-therevival-old-0.2.2.tar.bz2
shiftos-therevival-old-0.2.2.zip
v0.2.2 stuffy (infobar, time, more efficient code)0.2.2
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/Terminal.Designer.vb')
-rw-r--r--ShiftOS-TheRevival/MainForms/Terminal.Designer.vb27
1 files changed, 25 insertions, 2 deletions
diff --git a/ShiftOS-TheRevival/MainForms/Terminal.Designer.vb b/ShiftOS-TheRevival/MainForms/Terminal.Designer.vb
index a29a92e..fe90c64 100644
--- a/ShiftOS-TheRevival/MainForms/Terminal.Designer.vb
+++ b/ShiftOS-TheRevival/MainForms/Terminal.Designer.vb
@@ -25,6 +25,8 @@ Partial Class Terminal
Me.components = New System.ComponentModel.Container()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.StoryOnlyTimer = New System.Windows.Forms.Timer(Me.components)
+ Me.InfoBar = New System.Windows.Forms.TextBox()
+ Me.InfoBarTimer = New System.Windows.Forms.Timer(Me.components)
Me.SuspendLayout()
'
'TextBox1
@@ -33,22 +35,41 @@ Partial Class Terminal
Me.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None
Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.TextBox1.Font = New System.Drawing.Font("Consolas", 11.0!)
- Me.TextBox1.ForeColor = System.Drawing.Color.Silver
+ Me.TextBox1.ForeColor = System.Drawing.Color.White
Me.TextBox1.Location = New System.Drawing.Point(0, 0)
Me.TextBox1.Multiline = True
Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.Size = New System.Drawing.Size(800, 450)
+ Me.TextBox1.Size = New System.Drawing.Size(800, 432)
Me.TextBox1.TabIndex = 0
'
'StoryOnlyTimer
'
'
+ 'InfoBar
+ '
+ Me.InfoBar.BorderStyle = System.Windows.Forms.BorderStyle.None
+ Me.InfoBar.Dock = System.Windows.Forms.DockStyle.Bottom
+ Me.InfoBar.Font = New System.Drawing.Font("Consolas", 11.0!)
+ Me.InfoBar.ForeColor = System.Drawing.Color.Black
+ Me.InfoBar.Location = New System.Drawing.Point(0, 432)
+ Me.InfoBar.Name = "InfoBar"
+ Me.InfoBar.ReadOnly = True
+ Me.InfoBar.Size = New System.Drawing.Size(800, 18)
+ Me.InfoBar.TabIndex = 0
+ Me.InfoBar.Text = "Infobar"
+ Me.InfoBar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
+ '
+ 'InfoBarTimer
+ '
+ '
'Terminal
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
+ Me.BackColor = System.Drawing.Color.Red
Me.ClientSize = New System.Drawing.Size(800, 450)
Me.Controls.Add(Me.TextBox1)
+ Me.Controls.Add(Me.InfoBar)
Me.Name = "Terminal"
Me.Text = "Terminal"
Me.ResumeLayout(False)
@@ -58,4 +79,6 @@ Partial Class Terminal
Friend WithEvents TextBox1 As TextBox
Friend WithEvents StoryOnlyTimer As Timer
+ Friend WithEvents InfoBar As TextBox
+ Friend WithEvents InfoBarTimer As Timer
End Class