Mesen-X/GUI.NET/Forms/frmUpdatePrompt.Designer.cs

268 lines
12 KiB
C#
Raw Normal View History

2016-02-08 23:23:31 -05:00
namespace Mesen.GUI.Forms
{
partial class frmUpdatePrompt
{
/// <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()
{
2016-12-24 21:27:28 -05:00
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUpdatePrompt));
2016-02-08 23:23:31 -05:00
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lblLatestVersionString = new System.Windows.Forms.Label();
this.lblLatestVersion = new System.Windows.Forms.Label();
this.lblCurrentVersion = new System.Windows.Forms.Label();
this.txtChangelog = new System.Windows.Forms.TextBox();
this.lblChangeLog = new System.Windows.Forms.Label();
this.lblCurrentVersionString = new System.Windows.Forms.Label();
2016-12-24 21:27:28 -05:00
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
2016-02-08 23:23:31 -05:00
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.btnCancel = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
2016-12-24 21:27:28 -05:00
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.picDonate = new System.Windows.Forms.PictureBox();
this.lblDonate = new System.Windows.Forms.Label();
2016-02-08 23:23:31 -05:00
this.tableLayoutPanel1.SuspendLayout();
2016-12-24 21:27:28 -05:00
this.tableLayoutPanel2.SuspendLayout();
2016-02-08 23:23:31 -05:00
this.flowLayoutPanel1.SuspendLayout();
2016-12-24 21:27:28 -05:00
this.flowLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picDonate)).BeginInit();
2016-02-08 23:23:31 -05:00
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 4;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.lblLatestVersionString, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.lblLatestVersion, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.lblCurrentVersion, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.txtChangelog, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.lblChangeLog, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.lblCurrentVersionString, 3, 0);
2016-12-24 21:27:28 -05:00
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3);
2016-02-08 23:23:31 -05:00
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(5, 10, 5, 0);
this.tableLayoutPanel1.RowCount = 4;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
2016-04-30 21:21:52 -04:00
this.tableLayoutPanel1.Size = new System.Drawing.Size(689, 354);
2016-02-08 23:23:31 -05:00
this.tableLayoutPanel1.TabIndex = 0;
//
// lblLatestVersionString
//
this.lblLatestVersionString.AutoSize = true;
this.lblLatestVersionString.Location = new System.Drawing.Point(91, 10);
this.lblLatestVersionString.Name = "lblLatestVersionString";
2016-04-30 21:21:52 -04:00
this.lblLatestVersionString.Size = new System.Drawing.Size(28, 13);
2016-02-08 23:23:31 -05:00
this.lblLatestVersionString.TabIndex = 7;
2016-02-14 18:36:08 -05:00
this.lblLatestVersionString.Text = "x.x.x";
2016-02-08 23:23:31 -05:00
//
// lblLatestVersion
//
this.lblLatestVersion.AutoSize = true;
this.lblLatestVersion.Location = new System.Drawing.Point(8, 10);
this.lblLatestVersion.Name = "lblLatestVersion";
this.lblLatestVersion.Size = new System.Drawing.Size(77, 13);
this.lblLatestVersion.TabIndex = 2;
this.lblLatestVersion.Text = "Latest Version:";
//
// lblCurrentVersion
//
this.lblCurrentVersion.AutoSize = true;
this.lblCurrentVersion.Location = new System.Drawing.Point(191, 10);
this.lblCurrentVersion.Name = "lblCurrentVersion";
this.lblCurrentVersion.Size = new System.Drawing.Size(82, 13);
this.lblCurrentVersion.TabIndex = 3;
this.lblCurrentVersion.Text = "Current Version:";
//
// txtChangelog
//
this.txtChangelog.BackColor = System.Drawing.Color.White;
this.tableLayoutPanel1.SetColumnSpan(this.txtChangelog, 4);
this.txtChangelog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtChangelog.Location = new System.Drawing.Point(8, 49);
this.txtChangelog.Multiline = true;
this.txtChangelog.Name = "txtChangelog";
this.txtChangelog.ReadOnly = true;
this.txtChangelog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
2016-12-24 21:27:28 -05:00
this.txtChangelog.Size = new System.Drawing.Size(673, 271);
2016-02-08 23:23:31 -05:00
this.txtChangelog.TabIndex = 4;
this.txtChangelog.TabStop = false;
//
// lblChangeLog
//
this.lblChangeLog.AutoSize = true;
this.lblChangeLog.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblChangeLog.Location = new System.Drawing.Point(8, 33);
this.lblChangeLog.Margin = new System.Windows.Forms.Padding(3, 10, 3, 0);
this.lblChangeLog.Name = "lblChangeLog";
this.lblChangeLog.Size = new System.Drawing.Size(61, 13);
this.lblChangeLog.TabIndex = 5;
this.lblChangeLog.Text = "Changelog:";
//
// lblCurrentVersionString
//
this.lblCurrentVersionString.AutoSize = true;
this.lblCurrentVersionString.Location = new System.Drawing.Point(279, 10);
this.lblCurrentVersionString.Name = "lblCurrentVersionString";
2016-04-30 21:21:52 -04:00
this.lblCurrentVersionString.Size = new System.Drawing.Size(28, 13);
2016-02-08 23:23:31 -05:00
this.lblCurrentVersionString.TabIndex = 6;
2016-02-14 18:36:08 -05:00
this.lblCurrentVersionString.Text = "x.x.x";
2016-02-08 23:23:31 -05:00
//
2016-12-24 21:27:28 -05:00
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel1.SetColumnSpan(this.tableLayoutPanel2, 4);
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.flowLayoutPanel1, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.flowLayoutPanel2, 0, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(5, 323);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(679, 31);
this.tableLayoutPanel2.TabIndex = 9;
//
2016-02-08 23:23:31 -05:00
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.btnCancel);
this.flowLayoutPanel1.Controls.Add(this.btnUpdate);
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
2016-12-24 21:27:28 -05:00
this.flowLayoutPanel1.Location = new System.Drawing.Point(520, 0);
2016-02-08 23:23:31 -05:00
this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
2016-12-24 21:27:28 -05:00
this.flowLayoutPanel1.Size = new System.Drawing.Size(159, 28);
2016-02-08 23:23:31 -05:00
this.flowLayoutPanel1.TabIndex = 8;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
2016-12-24 21:27:28 -05:00
this.btnCancel.Location = new System.Drawing.Point(85, 3);
2016-02-08 23:23:31 -05:00
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(71, 23);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnUpdate
//
this.btnUpdate.DialogResult = System.Windows.Forms.DialogResult.OK;
2016-12-24 21:27:28 -05:00
this.btnUpdate.Location = new System.Drawing.Point(4, 3);
2016-02-08 23:23:31 -05:00
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(75, 23);
this.btnUpdate.TabIndex = 0;
this.btnUpdate.Text = "Update";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
2016-02-08 23:23:31 -05:00
//
2016-12-24 21:27:28 -05:00
// flowLayoutPanel2
//
this.flowLayoutPanel2.Controls.Add(this.picDonate);
this.flowLayoutPanel2.Controls.Add(this.lblDonate);
this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.flowLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(520, 31);
this.flowLayoutPanel2.TabIndex = 9;
this.flowLayoutPanel2.WrapContents = false;
//
// picDonate
//
this.picDonate.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.picDonate.Cursor = System.Windows.Forms.Cursors.Hand;
this.picDonate.Image = ((System.Drawing.Image)(resources.GetObject("picDonate.Image")));
this.picDonate.Location = new System.Drawing.Point(3, 3);
this.picDonate.Name = "picDonate";
this.picDonate.Size = new System.Drawing.Size(78, 22);
this.picDonate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.picDonate.TabIndex = 0;
this.picDonate.TabStop = false;
this.picDonate.Click += new System.EventHandler(this.picDonate_Click);
//
// lblDonate
//
this.lblDonate.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.lblDonate.AutoSize = true;
this.lblDonate.Location = new System.Drawing.Point(84, 7);
this.lblDonate.Margin = new System.Windows.Forms.Padding(0);
this.lblDonate.Name = "lblDonate";
this.lblDonate.Size = new System.Drawing.Size(331, 13);
this.lblDonate.TabIndex = 1;
this.lblDonate.Text = "If you want to support Mesen, please consider donating. Thank you!";
//
2016-02-08 23:23:31 -05:00
// frmUpdatePrompt
//
this.AcceptButton = this.btnUpdate;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
2016-04-30 21:21:52 -04:00
this.ClientSize = new System.Drawing.Size(689, 354);
2016-02-08 23:23:31 -05:00
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmUpdatePrompt";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Mesen - Update Available";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
2016-12-24 21:27:28 -05:00
this.tableLayoutPanel2.ResumeLayout(false);
2016-02-08 23:23:31 -05:00
this.flowLayoutPanel1.ResumeLayout(false);
2016-12-24 21:27:28 -05:00
this.flowLayoutPanel2.ResumeLayout(false);
this.flowLayoutPanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picDonate)).EndInit();
2016-02-08 23:23:31 -05:00
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label lblLatestVersionString;
private System.Windows.Forms.Label lblLatestVersion;
private System.Windows.Forms.Label lblCurrentVersion;
private System.Windows.Forms.TextBox txtChangelog;
private System.Windows.Forms.Label lblChangeLog;
private System.Windows.Forms.Label lblCurrentVersionString;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnUpdate;
2016-12-24 21:27:28 -05:00
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
private System.Windows.Forms.PictureBox picDonate;
private System.Windows.Forms.Label lblDonate;
2016-02-08 23:23:31 -05:00
}
}