mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
106 lines
4.6 KiB
C#
106 lines
4.6 KiB
C#
namespace Updater
|
||
{
|
||
partial class UpdateForm
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.panel1.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.Location = new System.Drawing.Point(76, 29);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(215, 35);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "Application will be updated and reopened.";
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.BackColor = System.Drawing.SystemColors.Window;
|
||
this.panel1.Controls.Add(this.pictureBox1);
|
||
this.panel1.Controls.Add(this.label1);
|
||
this.panel1.Location = new System.Drawing.Point(0, 0);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(294, 83);
|
||
this.panel1.TabIndex = 4;
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||
this.pictureBox1.Image = global::Updater.Properties.Resources.inbox_download;
|
||
this.pictureBox1.Location = new System.Drawing.Point(10, 10);
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.Size = new System.Drawing.Size(60, 60);
|
||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
|
||
this.pictureBox1.TabIndex = 0;
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(212, 92);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||
this.button1.TabIndex = 5;
|
||
this.button1.Text = "OK";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// UpdateForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(294, 121);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.panel1);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "UpdateForm";
|
||
this.ShowIcon = false;
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "Crypto Notepad Updater";
|
||
this.Load += new System.EventHandler(this.Form1_Load);
|
||
this.panel1.ResumeLayout(false);
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Panel panel1;
|
||
}
|
||
}
|
||
|