98 lines
3.2 KiB
C#
98 lines
3.2 KiB
C#
namespace PWAppUpdater2
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
progressBar1 = new ProgressBar();
|
|
button1 = new Button();
|
|
label1 = new Label();
|
|
StepInfo = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// progressBar1
|
|
//
|
|
progressBar1.Location = new Point(30, 60);
|
|
progressBar1.Name = "progressBar1";
|
|
progressBar1.Size = new Size(200, 10);
|
|
progressBar1.TabIndex = 0;
|
|
progressBar1.Click += progressBar1_Click;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(105, 80);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(50, 23);
|
|
button1.TabIndex = 1;
|
|
button1.Text = "OK";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += button1_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
|
label1.Location = new Point(12, 9);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(168, 30);
|
|
label1.TabIndex = 2;
|
|
label1.Text = "The program will now update. \r\nPlease click \"OK\" to continue.";
|
|
label1.Click += label1_Click;
|
|
//
|
|
// StepInfo
|
|
//
|
|
StepInfo.AutoSize = true;
|
|
StepInfo.Location = new Point(30, 42);
|
|
StepInfo.Name = "StepInfo";
|
|
StepInfo.Size = new Size(0, 15);
|
|
StepInfo.TabIndex = 3;
|
|
StepInfo.Click += label2_Click;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(264, 111);
|
|
Controls.Add(StepInfo);
|
|
Controls.Add(label1);
|
|
Controls.Add(button1);
|
|
Controls.Add(progressBar1);
|
|
Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ProgressBar progressBar1;
|
|
private Button button1;
|
|
private Label label1;
|
|
private Label StepInfo;
|
|
}
|
|
} |