1
Fork 0

removed most of code to make it simpler

This commit is contained in:
Jake Howard 2014-12-03 12:28:05 +00:00
parent 5b5f6342fb
commit 2f46d5d6f9
1 changed files with 3 additions and 4 deletions

View File

@ -5,7 +5,7 @@ using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms;
namespace Saviour_Backup_System
@ -15,12 +15,11 @@ namespace Saviour_Backup_System
public splashScreen()
{
InitializeComponent();
display();
}
public void display(bool isStartup) {
private void display() {
this.Show();
this.desc.Text = "Initialising...";
if (isStartup) { this.Hide(); }
}
}
}