Files
carmanager-3/CarManagerV3/Forms/Util/PleaseWait.cs
2026-03-10 15:04:27 +01:00

24 lines
527 B
C#

using System;
using System.Windows.Forms;
namespace CarManagerV3
{
public partial class PleaseWait : Form
{
public PleaseWait(string content = "Saving your changes...")
{
InitializeComponent();
// loading animation
progressBar1.Style = ProgressBarStyle.Marquee;
progressBar1.MarqueeAnimationSpeed = 30;
lblContent.Text = content;
}
private void progressBar1_Click(object sender, EventArgs e)
{
}
}
}