dev: updater

This commit is contained in:
2026-03-10 15:04:27 +01:00
parent f2e4addbb0
commit f065f58f71
15 changed files with 825 additions and 173 deletions

View File

@@ -28,58 +28,60 @@
/// </summary>
private void InitializeComponent()
{
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
progressBar1 = new System.Windows.Forms.ProgressBar();
label1 = new System.Windows.Forms.Label();
lblContent = new System.Windows.Forms.Label();
SuspendLayout();
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(12, 62);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(422, 23);
this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
this.progressBar1.TabIndex = 0;
this.progressBar1.Click += new System.EventHandler(this.progressBar1_Click);
progressBar1.Location = new System.Drawing.Point(12, 78);
progressBar1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
progressBar1.Name = "progressBar1";
progressBar1.Size = new System.Drawing.Size(422, 29);
progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
progressBar1.TabIndex = 0;
progressBar1.Click += progressBar1_Click;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(121, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Please wait...";
label1.AutoSize = true;
label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
label1.Location = new System.Drawing.Point(12, 16);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(121, 20);
label1.TabIndex = 1;
label1.Text = "Please wait...";
//
// label2
// lblContent
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(13, 33);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(133, 16);
this.label2.TabIndex = 2;
this.label2.Text = "Saving your changes";
lblContent.AutoSize = true;
lblContent.Location = new System.Drawing.Point(13, 41);
lblContent.Name = "lblContent";
lblContent.Size = new System.Drawing.Size(144, 20);
lblContent.TabIndex = 2;
lblContent.Text = "Saving your changes";
//
// PleaseWait
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(446, 97);
this.ControlBox = false;
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.progressBar1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PleaseWait";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "Please Wait";
this.ResumeLayout(false);
this.PerformLayout();
AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
AutoSize = true;
ClientSize = new System.Drawing.Size(446, 121);
ControlBox = false;
Controls.Add(lblContent);
Controls.Add(label1);
Controls.Add(progressBar1);
FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
MaximizeBox = false;
MinimizeBox = false;
Name = "PleaseWait";
ShowIcon = false;
ShowInTaskbar = false;
Text = "Please Wait";
ResumeLayout(false);
PerformLayout();
}
@@ -87,6 +89,6 @@
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label lblContent;
}
}