30 lines
631 B
C#
30 lines
631 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 CarManagerV3
|
|
{
|
|
public partial class PleaseWait : Form
|
|
{
|
|
public PleaseWait()
|
|
{
|
|
InitializeComponent();
|
|
// loading animation
|
|
progressBar1.Style = ProgressBarStyle.Marquee;
|
|
progressBar1.MarqueeAnimationSpeed = 30;
|
|
|
|
}
|
|
|
|
private void progressBar1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|