mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
122 lines
5.4 KiB
C#
122 lines
5.4 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.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
||
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, 41);
|
||
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);
|
||
//
|
||
// linkLabel1
|
||
//
|
||
this.linkLabel1.AutoSize = true;
|
||
this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
|
||
this.linkLabel1.Location = new System.Drawing.Point(12, 97);
|
||
this.linkLabel1.Name = "linkLabel1";
|
||
this.linkLabel1.Size = new System.Drawing.Size(96, 13);
|
||
this.linkLabel1.TabIndex = 6;
|
||
this.linkLabel1.TabStop = true;
|
||
this.linkLabel1.Text = "View release notes";
|
||
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
|
||
//
|
||
// 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.linkLabel1);
|
||
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);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#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;
|
||
private System.Windows.Forms.LinkLabel linkLabel1;
|
||
}
|
||
}
|
||
|