26 lines
570 B
C#
26 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Saviour_Backup_System
|
|
{
|
|
public partial class splashScreen : Form
|
|
{
|
|
public splashScreen()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void display(bool isStartup) {
|
|
this.Show();
|
|
this.desc.Text = "Initialising...";
|
|
if (isStartup) { this.Hide(); }
|
|
}
|
|
}
|
|
}
|