using System.Windows.Forms; namespace PersistentWindows.SystrayShell { partial class SplashForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.label1 = new System.Windows.Forms.Label(); this.progressBar1 = new System.Windows.Forms.ProgressBar(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Courier New", 10F); this.label1.Location = new System.Drawing.Point(160, 51); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(49, 20); this.label1.TabIndex = 0; this.label1.Text = "info"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.label1.Click += new System.EventHandler(this.label1_Click); // // progressBar1 // this.progressBar1.Location = new System.Drawing.Point(108, 248); this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(482, 26); this.progressBar1.Step = 20; this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar1.TabIndex = 1; // // timer1 // this.timer1.Enabled = true; this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Underline); this.label2.Location = new System.Drawing.Point(192, 180); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(269, 20); this.label2.TabIndex = 2; this.label2.Text = "Recognize All Contributors"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.label2.Click += new System.EventHandler(this.label2_Click); // // SplashForm // this.ClientSize = new System.Drawing.Size(671, 353); this.Controls.Add(this.label2); this.Controls.Add(this.progressBar1); this.Controls.Add(this.label1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SplashForm"; this.Icon = Program.IdleIcon; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Load += new System.EventHandler(this.SplashForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar progressBar1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Timer timer1; private Label label2; } }