113 lines
4.6 KiB
C#
113 lines
4.6 KiB
C#
|
|
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CreamInstaller
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.updateButton = new System.Windows.Forms.Button();
|
|
this.ignoreButton = new System.Windows.Forms.Button();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Location = new System.Drawing.Point(12, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(218, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Checking for updates . . .";
|
|
//
|
|
// updateButton
|
|
//
|
|
this.updateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.updateButton.Enabled = false;
|
|
this.updateButton.Location = new System.Drawing.Point(317, 12);
|
|
this.updateButton.Name = "updateButton";
|
|
this.updateButton.Size = new System.Drawing.Size(75, 23);
|
|
this.updateButton.TabIndex = 2;
|
|
this.updateButton.Text = "Update";
|
|
this.updateButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// ignoreButton
|
|
//
|
|
this.ignoreButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ignoreButton.Enabled = false;
|
|
this.ignoreButton.Location = new System.Drawing.Point(236, 12);
|
|
this.ignoreButton.Name = "ignoreButton";
|
|
this.ignoreButton.Size = new System.Drawing.Size(75, 23);
|
|
this.ignoreButton.TabIndex = 1;
|
|
this.ignoreButton.Text = "Ignore";
|
|
this.ignoreButton.UseVisualStyleBackColor = true;
|
|
this.ignoreButton.Click += new System.EventHandler(this.OnIgnore);
|
|
//
|
|
// progressBar1
|
|
//
|
|
this.progressBar1.Location = new System.Drawing.Point(12, 41);
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Size = new System.Drawing.Size(380, 23);
|
|
this.progressBar1.TabIndex = 4;
|
|
this.progressBar1.Visible = false;
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(404, 46);
|
|
this.Controls.Add(this.progressBar1);
|
|
this.Controls.Add(this.ignoreButton);
|
|
this.Controls.Add(this.updateButton);
|
|
this.Controls.Add(this.label1);
|
|
this.DoubleBuffered = true;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "MainForm";
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "MainForm";
|
|
this.TopMost = true;
|
|
this.Load += new System.EventHandler(this.OnLoad);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Button updateButton;
|
|
private Button ignoreButton;
|
|
private ProgressBar progressBar1;
|
|
}
|
|
}
|
|
|