25 lines
482 B
C#
25 lines
482 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;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Saviour_Backup_System
|
|
{
|
|
public partial class splashScreen : Form
|
|
{
|
|
public splashScreen()
|
|
{
|
|
InitializeComponent();
|
|
display();
|
|
}
|
|
|
|
private void display() {
|
|
this.Show();
|
|
}
|
|
}
|
|
}
|