Files
MicronSync/MicronSync/Components/Forms/DonationUI.Designer.cs

172 lines
8.4 KiB
C#

namespace MicronSync.Components
{
partial class DonationUI
{
/// <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(DonationUI));
this.textInfo = new System.Windows.Forms.RichTextBox();
this.progWait = new System.Windows.Forms.ProgressBar();
this.btnContinue = new System.Windows.Forms.Button();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.enterRegistrationKeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.buyKeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.websiteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// textInfo
//
this.textInfo.BackColor = System.Drawing.SystemColors.Window;
this.textInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textInfo.Location = new System.Drawing.Point(112, 36);
this.textInfo.Name = "textInfo";
this.textInfo.ReadOnly = true;
this.textInfo.Size = new System.Drawing.Size(460, 96);
this.textInfo.TabIndex = 2;
this.textInfo.Text = resources.GetString("textInfo.Text");
//
// progWait
//
this.progWait.Location = new System.Drawing.Point(12, 138);
this.progWait.Name = "progWait";
this.progWait.Size = new System.Drawing.Size(479, 23);
this.progWait.Step = 20;
this.progWait.TabIndex = 1;
//
// btnContinue
//
this.btnContinue.Enabled = false;
this.btnContinue.Location = new System.Drawing.Point(497, 138);
this.btnContinue.Name = "btnContinue";
this.btnContinue.Size = new System.Drawing.Size(75, 23);
this.btnContinue.TabIndex = 0;
this.btnContinue.Text = "Continue";
this.btnContinue.UseVisualStyleBackColor = true;
this.btnContinue.Click += new System.EventHandler(this.btnContinue_Click);
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.registerToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(584, 24);
this.menuStrip1.TabIndex = 3;
this.menuStrip1.Text = "menuStrip1";
//
// registerToolStripMenuItem
//
this.registerToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.enterRegistrationKeyToolStripMenuItem,
this.buyKeyToolStripMenuItem,
this.toolStripSeparator1,
this.websiteToolStripMenuItem});
this.registerToolStripMenuItem.Name = "registerToolStripMenuItem";
this.registerToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.registerToolStripMenuItem.Text = "Register";
//
// enterRegistrationKeyToolStripMenuItem
//
this.enterRegistrationKeyToolStripMenuItem.Name = "enterRegistrationKeyToolStripMenuItem";
this.enterRegistrationKeyToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
this.enterRegistrationKeyToolStripMenuItem.Text = "Enter donation key...";
this.enterRegistrationKeyToolStripMenuItem.Click += new System.EventHandler(this.enterRegistrationKeyToolStripMenuItem_Click);
//
// buyKeyToolStripMenuItem
//
this.buyKeyToolStripMenuItem.Name = "buyKeyToolStripMenuItem";
this.buyKeyToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
this.buyKeyToolStripMenuItem.Text = "Donate...";
this.buyKeyToolStripMenuItem.Click += new System.EventHandler(this.donateToolStripMenuItem_Click);
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(12, 36);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(94, 96);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 4;
this.pictureBox1.TabStop = false;
//
// websiteToolStripMenuItem
//
this.websiteToolStripMenuItem.Name = "websiteToolStripMenuItem";
this.websiteToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
this.websiteToolStripMenuItem.Text = "Website...";
this.websiteToolStripMenuItem.Click += new System.EventHandler(this.websiteToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(179, 6);
//
// DonationUI
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(584, 171);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.btnContinue);
this.Controls.Add(this.progWait);
this.Controls.Add(this.textInfo);
this.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "DonationUI";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MicronSync - Donation";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DonationUI_FormClosing);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox textInfo;
private System.Windows.Forms.ProgressBar progWait;
private System.Windows.Forms.Button btnContinue;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem registerToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem enterRegistrationKeyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem buyKeyToolStripMenuItem;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ToolStripMenuItem websiteToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
}
}