aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Boot.cs
diff options
context:
space:
mode:
authorAndrew <alee14498@gmail.com>2018-08-28 14:22:58 -0400
committerAndrew <alee14498@gmail.com>2018-08-28 14:22:58 -0400
commit90e14a0932b63679c356e8bc1d42e657d7c612ad (patch)
treef7c6e6600e17dc3c3a6b8868c3e3e52c88dc6e1b /Project Ports/Boot.cs
parent88bd278b428e85b54441342d8d94fc7c6e3c9029 (diff)
downloadProject-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.gz
Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.bz2
Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.zip
Changed crashing and added booting
Diffstat (limited to 'Project Ports/Boot.cs')
-rw-r--r--Project Ports/Boot.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/Project Ports/Boot.cs b/Project Ports/Boot.cs
new file mode 100644
index 0000000..4aa9380
--- /dev/null
+++ b/Project Ports/Boot.cs
@@ -0,0 +1,39 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Project_Ports
+{
+ public partial class Boot : Form
+ {
+ public Boot()
+ {
+ InitializeComponent();
+ }
+
+ private void Boot_Load(object sender, EventArgs e)
+ {
+ this.BringToFront();
+ Thread.Sleep(2000);
+ txtBoot.AppendText("PortOS is now booting...");
+ Thread.Sleep(2000);
+ txtBoot.AppendText("PortOS is now booting..." + Environment.NewLine);
+ Thread.Sleep(2000);
+ txtBoot.AppendText("GUI Driver has been found!" + Environment.NewLine);
+ Thread.Sleep(2000);
+ txtBoot.AppendText("Starting Desktop..." + Environment.NewLine);
+ Thread.Sleep(3000);
+
+ Desktop desktop = new Desktop();
+ desktop.Show();
+ this.Close();
+ }
+ }
+}