feat: autoupdater

This commit is contained in:
2026-03-10 16:02:23 +01:00
parent f065f58f71
commit a7aad1a5ef
12 changed files with 507 additions and 72 deletions

View File

@@ -8,11 +8,16 @@ namespace CarManagerV3
public PleaseWait(string content = "Saving your changes...")
{
InitializeComponent();
this.SetStyle(ControlStyles.OptimizedDoubleBuffer |
ControlStyles.AllPaintingInWmPaint |
ControlStyles.UserPaint, true);
// loading animation
progressBar1.Style = ProgressBarStyle.Marquee;
progressBar1.MarqueeAnimationSpeed = 30;
animatedProgressBar1.StartAnimation();
lblContent.Text = content;
}
private void progressBar1_Click(object sender, EventArgs e)